for循环和while循环 摘要:解题思路:注意事项:参考代码:#include<stdio.h>#include<string.h>#include<ctype.h>int main(){ char x[1000]; char s[…… 题解列表 2024年12月22日 0 点赞 0 评论 187 浏览 评分:0.0
编写题解 2796: 求整数的和与均值 摘要:解题思路:注意事项:参考代码:#include<bits/stdc++.h> using namespace std;int main(){ long long n,sum=0;cin>>n; for…… 题解列表 2024年12月22日 1 点赞 0 评论 351 浏览 评分:0.0
编写题解 2798: 整数序列的元素最大跨度值 摘要:解题思路:注意事项:参考代码:#include<bits/stdc++.h>using namespace std;int main(){ long long n,maxx=-1e18,minn…… 题解列表 2024年12月22日 0 点赞 0 评论 399 浏览 评分:0.0
树型dp #2484: 信息学奥赛一本通T1579-皇宫看守(c++) 不是很详细.. 摘要:``` #include #include #include using namespace std; const int N = 1510; int n; int h[N]…… 题解列表 2024年12月22日 0 点赞 0 评论 292 浏览 评分:0.0
编写题解 2799: 奥运奖牌计数 摘要:解题思路:注意事项:参考代码:#include<bits/stdc++.h> using namespace std;int main(){ long long n,a=0,b=0,c=0;int j…… 题解列表 2024年12月22日 1 点赞 0 评论 245 浏览 评分:0.0
编写题解 2787: 有一门课不及格的学生 摘要:解题思路:两个恰好有一个,联想到异或门,当两变量不同时为一,相同时为零注意事项:参考代码:a,b=map(int,input().strip().split())if (a>=60)^(b>=60)=…… 题解列表 2024年12月22日 0 点赞 0 评论 196 浏览 评分:0.0
1019运用递归的思想,简直easy。 摘要:解题思路:运用递归的思想,简直easy。注意事项:参考代码:#include<stdio.h>double luodi(double m ,double n){ if(n==1) return…… 题解列表 2024年12月22日 2 点赞 0 评论 649 浏览 评分:0.0
我的野心很大 所以我没资格停止 摘要:解题思路: 树状DP 啊啊啊 好难注意事项:参考代码:#include"bits/stdc++.h" using namespace std;…… 题解列表 2024年12月23日 0 点赞 0 评论 141 浏览 评分:0.0
破晓 降至 !!! 摘要:解题思路:注意事项: 看清题目哦参考代码:#include"bits/stdc++.h" using namespace std; // 定义全局变量n和二维数组a,用于…… 题解列表 2024年12月23日 0 点赞 0 评论 146 浏览 评分:0.0
中间的牛奶产量怎么求 摘要:解题思路:注意事项:以下是用C++实现的步骤:读取奶牛的数量 NN。读取每头奶牛的牛奶产量,并将它们存储在一个向量中。对向量进行排序。找到排序后向量的中间元素,即中位数。参考代码:#include<i…… 题解列表 2024年12月24日 0 点赞 0 评论 252 浏览 评分:0.0