题解 2759: 打印字符 摘要:解题思路:注意事项:参考代码:#include<iostream>using namespace std;int main(){ int a; cin>>a; putchar(a); …… 题解列表 2023年12月21日 0 点赞 0 评论 207 浏览 评分:9.9
题解 2773: 计算线段长度 摘要:解题思路:注意事项:参考代码:#inalude <bitz/stdc+-.h>uerng namespace std;doqble xa,ya,xb,yb,c;int maie(){ cin>>…… 题解列表 2023年12月21日 0 点赞 0 评论 217 浏览 评分:9.9
3024: 判断整除 摘要:解题思路: 搜索回溯计算数字序列,注意事项: 在递归之后, 恢复res值以做下次计算参考代码:#include<iostream> #include<algorithm> using namesp…… 题解列表 2023年12月21日 0 点赞 0 评论 198 浏览 评分:9.9
利用字符串,指针和ASII表进行统计 摘要:解题思路:注意事项:参考代码:#include<iostream>#include<string>using namespace std;int main(){ string str; i…… 题解列表 2023年12月21日 1 点赞 0 评论 232 浏览 评分:0.0
(C++)最大公因数和最小公倍数求解 摘要:解题思路://最小公倍数:从m,n两之中最大的开始,如果该数能够同时被m,n整除,结束//最大公约数,从2开始,知道两个数中小的那个截止,//如果都不能让m,n整除,那么最大公约数就是1//max_c…… 题解列表 2023年12月21日 0 点赞 0 评论 166 浏览 评分:0.0
C++利用指针重复遍历输出 摘要:解题思路:注意事项:参考代码:#include<iostream>#include<string.h>using namespace std;int main(){ char str[20] =…… 题解列表 2023年12月21日 0 点赞 0 评论 163 浏览 评分:0.0
巧用inline函数节省时间 摘要:解题思路:利用inline函数的调用节省了函数调用的时间,但会增加空间的用量注意事项:参考代码:#include<iostream>using namespace std;inline int ans…… 题解列表 2023年12月21日 0 点赞 0 评论 168 浏览 评分:0.0
离线 + 哈希 摘要:解题思路:该题没有涉及修改操作,多次查询,离线一定 有机会优化出比在线更好的算法我们对查询的边界【l,r】中的r从左到右解决问题发现l肯定是越小越有机会yes,我们现在要解决的就是这个边界值l_bou…… 题解列表 2023年12月21日 0 点赞 0 评论 329 浏览 评分:6.0
2904: 谁拿了最多奖学金 摘要: #include using namespace std; const int N=110; int g[N],c[N],r[N],sum[N],num=0,t=…… 题解列表 2023年12月20日 0 点赞 0 评论 172 浏览 评分:0.0
排序+新设数组 摘要:解题思路:注意事项:参考代码:#include <iostream>#include<cmath>#include<algorithm>#include<cstdio>using namespace …… 题解列表 2023年12月20日 0 点赞 0 评论 169 浏览 评分:0.0