1244: 破解简单密码 摘要:```cpp #include using namespace std; int main() { string s; while(cin>>s) { …… 题解列表 2023年01月18日 1 点赞 0 评论 471 浏览 评分:9.9
A+B for Input-Output Practice (IV) 摘要:解题思路:注意事项:参考代码:#include<iostream>using namespace std;int main(){ int i,n=0; int a[100]={0}; while(ci…… 题解列表 2023年01月18日 0 点赞 0 评论 245 浏览 评分:0.0
A+B for Input-Output Practice (IV) 摘要:解题思路:注意事项:参考代码:#include<iostream>using namespace std;int main(){ int i,n=0; int a[100]={0}; while(ci…… 题解列表 2023年01月18日 0 点赞 0 评论 315 浏览 评分:0.0
链表之节点删除 摘要:解题思路:注意事项:参考代码:#include<bits/stdc++.h>using namespace std;int main(){ int id,score; map<int,i…… 题解列表 2023年01月18日 0 点赞 0 评论 348 浏览 评分:0.0
链表删除练习 摘要:解题思路:此题用c++解答相对简单便捷,不得不说stl还是牛注意事项:参考代码:#include<bits/stdc++.h>using namespace std;int main(){ list<…… 题解列表 2023年01月17日 0 点赞 0 评论 361 浏览 评分:0.0
小白能看懂的 摘要:解题思路:注意事项:参考代码:#include<iostream> #include<cmath> using namespace std; int main() { int m =…… 题解列表 2023年01月17日 0 点赞 0 评论 378 浏览 评分:0.0
最大子矩阵(线段树题解) 摘要:~~~ /*先分析复杂度,n^2*m^2 的复杂度明显超过1e8,所以想想二分/线段树/双指针解法,本题中先枚举n^2,非常小,先假设固定上下端点,再枚举列,判断每一列的最大最小值,然后运用线段树维…… 题解列表 2023年01月16日 1 点赞 0 评论 1154 浏览 评分:9.9
1003: [编程入门]密码破译 摘要:解题思路:谢邀,这道入门难住我了注意事项:参考代码:#include<iostream>#include<string>using namespace std;int main(){ int i; c…… 题解列表 2023年01月16日 0 点赞 0 评论 399 浏览 评分:0.0
2181: 信息学奥赛一本通T1005-地球人口承载力估计 摘要:```cpp #include #include using namespace std; int main() { float x,a,y,b,n; cin>>x>>a…… 题解列表 2023年01月16日 2 点赞 0 评论 1302 浏览 评分:9.9
1561: 蓝桥杯算法提高VIP-计算质因子 摘要:```cpp #include using namespace std; int check(int num) { bool flag=true; if(num==1) …… 题解列表 2023年01月16日 1 点赞 0 评论 460 浏览 评分:9.9