忙碌的小L (月赛题解,targin) 摘要:解题思路: 23333,4月月赛题目,这道题目是入门题是真的坑,哪有入门这么难的ε=ε=ε=(~ ̄▽ ̄)~,抢个首题解,顺手感谢小闷骚大佬的思路 这道题目直接用并查集做,方正我直接一套模板…… 题解列表 2019年04月28日 5 点赞 3 评论 702 浏览 评分:0.0
蛇行矩阵 (C++代码) 摘要:解题思路:参考大神思路自己写的注意事项:参考代码:#include <iostream>#include<iomanip>#include<cstdio>#include<cmath>#include…… 题解列表 2019年04月28日 0 点赞 0 评论 419 浏览 评分:0.0
【密码】 (C++代码) 摘要:解题思路:注意四个中的三个我用了暴力判断加sort排序巧妙解决四个中三个的问题注意事项:参考代码:#include <bits/stdc++.h> #include <iostream> usin…… 题解列表 2019年04月28日 0 点赞 0 评论 658 浏览 评分:0.0
【出圈】 (C语言代码) 摘要:解题思路:注意事项:参考代码:#include<stdio.h> int main() { int a[100]; int i,j,n,m,cnt,js; while(scanf("%…… 题解列表 2019年04月28日 0 点赞 0 评论 793 浏览 评分:0.0
【明明的随机数】 (C++代码) 摘要:解题思路:注意事项:参考代码:#include <bits/stdc++.h> #include <iostream> using namespace std; int main() { …… 题解列表 2019年04月28日 0 点赞 0 评论 706 浏览 评分:0.0
【求[X,Y]内被除3余1并且被除5余3的整数的和】 (C++代码) 摘要:解题思路:注意事项:参考代码:#include <bits/stdc++.h> #include <iostream> using namespace std; int main() { …… 题解列表 2019年04月28日 0 点赞 0 评论 998 浏览 评分:0.0
2005年春浙江省计算机等级考试二级C 编程题(3) (C语言代码) 摘要:解题思路:注意事项:参考代码:#include<stdio.h>#include<math.h>int main(){ int n, i, j, a[6][6], b[6][6], k, t, …… 题解列表 2019年04月29日 0 点赞 0 评论 559 浏览 评分:0.0
2006年春浙江省计算机等级考试二级C 编程题(1) (C语言代码) 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ float a; int x = 0, y = 0, z = 0; scanf("%f", &…… 题解列表 2019年04月29日 0 点赞 0 评论 720 浏览 评分:0.0
2006年春浙江省计算机等级考试二级C 编程题(2) (C语言代码) 摘要:解题思路:注意事项:参考代码:#include<stdio.h>double fact(int k){ if(k == 0 || k == 1) return 1; else…… 题解列表 2019年04月29日 0 点赞 0 评论 705 浏览 评分:0.0
蓝桥杯算法提高VIP-前10名 (C语言代码) 摘要:解题思路:注意事项:参考代码:#include<stdio.h> int a[2000]; int main() { int n,t; scanf("%d",&n); //输入 …… 题解列表 2019年04月29日 0 点赞 0 评论 1174 浏览 评分:0.0