编写题解 1139: C语言训练-求素数问题 摘要:解题思路:注意事项:参考代码:#include<iostream>using namespace std;int main(){ int n; cin>>n; for(int i=2…… 题解列表 2022年03月27日 0 点赞 0 评论 219 浏览 评分:0.0
编写题解 1138: C语言训练-求矩阵的两对角线上的元素之和 摘要:解题思路:注意事项:参考代码:#include<iostream>using namespace std;int main(){ int a[10][10]; int n; int …… 题解列表 2022年03月27日 0 点赞 0 评论 184 浏览 评分:0.0
蓝桥杯2017年第八届真题-k倍区间 巧妙的结算 摘要:参考了别人的题解 ```cpp #include using namespace std; int n,k; long long num[100005];//注意long long不然范围不…… 题解列表 2022年03月27日 0 点赞 0 评论 426 浏览 评分:9.9
编写题解 1141: C语言训练-百钱百鸡问题 摘要:解题思路:注意事项:参考代码:#include<iostream>using namespace std;int main(){ for(int i=0;i<100;i++){ f…… 题解列表 2022年03月26日 0 点赞 0 评论 326 浏览 评分:0.0
不好意思,直接输出了 摘要:解题思路:注意事项:参考代码:#include<iostream>using namespace std;int main(){ cout<<"95959"<<endl; return 0…… 题解列表 2022年03月26日 0 点赞 0 评论 239 浏览 评分:0.0
编写题解 1126: C语言训练-字符串正反连接 摘要:解题思路:注意事项:参考代码:#include<iostream>using namespace std;int main(){ string str; cin>>str; cout…… 题解列表 2022年03月26日 0 点赞 0 评论 308 浏览 评分:0.0
编写题解 1051: [编程入门]结构体之成绩统计2 摘要:解题思路:注意事项:参考代码:#include<iostream>using namespace std;struct student{ string id; string name; …… 题解列表 2022年03月26日 0 点赞 0 评论 306 浏览 评分:0.0
抢夺资源 经典巴什博弈 摘要:典型巴什博弈问题 **如果n=m+1,不管先手取多少,都是后手赢** 由此可以得到启发,**只要给对手留下(m+1)的倍数,就能赢** ```cpp #include using names…… 题解列表 2022年03月26日 1 点赞 0 评论 328 浏览 评分:9.9
(C++代码) 简单的字符串-题解 递归函数解法 摘要:#include<iostream> #include<string> #include<string.h> using namespace std; int Count;//记录相同的项的个…… 题解列表 2022年03月26日 0 点赞 0 评论 250 浏览 评分:0.0
记忆化搜索-取球博弈 摘要:dfs搜索每种可能走法,vis数组存出现过的场面防止重复递归 存在对手输则自己赢,不存在则查看是否可能出现平局,若两者情况都没有就必败 注意每次递归交换操作对象 ```cpp #include…… 题解列表 2022年03月26日 0 点赞 0 评论 652 浏览 评分:8.0