Tetrahedrons and Spheres 摘要:#include <cstdio> #include <cstring> #include <cstdlib> #include <cmath> #include <algorithm> #…… 题解列表 2022年05月08日 0 点赞 2 评论 853 浏览 评分:8.7
编写题解 1081: Infinite Dictionaries 摘要:#include<vector> #include<map> #include<string> #include<cstring> #include<cstdio> #include<c…… 题解列表 2022年05月08日 0 点赞 0 评论 842 浏览 评分:6.0
编写题解 2679: 蓝桥杯2022年第十三届省赛真题-拉箱子 摘要:import java.io.StreamTokenizer; import java.io.InputStreamReader; import java.io.BufferedReader; …… 题解列表 2022年05月08日 0 点赞 1 评论 1064 浏览 评分:7.6
2175: 信息学奥赛一本通T1250-The Castle ```/*在标注四个方向时一定要注意本题中往下是y轴增加的方向,和我们平时用的数学中的坐标轴不同!!!*/#include#definexfirst#defineysecondusingnamespacestd;typedefpairpii;//西北东南constintdx[4]={0, 题解列表 2022年05月08日 0 点赞 0 评论 758 浏览 评分:8.9
数字逆序输出 题解(简单)(c++) 摘要:解题思路:就是倒过来输出而已。注意事项:无。参考代码:#include<bits/stdc++.h>using namespace std;int a[55];int main(){ for(int …… 题解列表 2022年05月08日 0 点赞 0 评论 535 浏览 评分:0.0
数组插入处理 题解(sort简单易懂) 摘要:解题思路:这题就跟排序差不多,用sort就欧了。注意事项:无。参考代码:#include<bits/stdc++.h>using namespace std;int a[55];int main(){…… 题解列表 2022年05月08日 0 点赞 0 评论 464 浏览 评分:0.0
矩阵对角线求和 题解(c++) 摘要:解题思路:先输入,再直接输出。注意事项:无。参考代码:#include<bits/stdc++.h>using namespace std;int a[55][55];int main(){ for(…… 题解列表 2022年05月08日 0 点赞 0 评论 539 浏览 评分:0.0
选择排序 题解(c++sort水过) 摘要:解题思路:用sort排序简单水过。注意事项:无。参考代码:#include<bits/stdc++.h>using namespace std;int a[55];int main(){ for(in…… 题解列表 2022年05月08日 0 点赞 0 评论 467 浏览 评分:0.0
筛选N以内的素数 c++题解(简单易懂) 摘要:解题思路:先把范围内的素数标记再统计就可以了。 注意事项:无。参考代码:#include<bits/stdc++.h>using namespace std;long long n,a[100000…… 题解列表 2022年05月08日 0 点赞 0 评论 461 浏览 评分:0.0
水仙花数判断 题解(c++拆分) 摘要:解题思路:要求拆分再判断是否为是否符合要求,如符合,便输出。注意事项:无。参考代码:#include<bits/stdc++.h>using namespace std;int a,b,c;int m…… 题解列表 2022年05月08日 0 点赞 0 评论 537 浏览 评分:0.0