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