ysong想养只修狗
ysong想养只修狗
全部文章
分类
归档
标签
去牛客网
登录
/
注册
ysong想养只修狗的博客
全部文章
(共63篇)
题解 | #奥运排序问题#
#include <iostream> using namespace std; const int N = 10; int temp[N][3];//金牌数、奖牌数、人口数 int main() { int n, m; while(scanf("%d%d", &n, ...
2023-04-23
0
304
题解 | #特殊排序#
#include <iostream> using namespace std; const int N = 1001; int q[N]; void quick_sort(int q[], int l, int r){ if(l >= r) return ; i...
2023-04-21
0
215
题解 | #成绩排序#
#include <iostream> #include <algorithm> using namespace std; const int N = 1e5 + 10; struct P{ string name; int score; } stu[N]; ...
2023-04-21
1
203
题解 | #排序#
#include <iostream> using namespace std; const int N = 101; int temp[N];//归并排序时的临时数组 void quick_sort(int q[], int l, int r){//快速排序 if (l &g...
2023-04-21
0
181
题解 | #路径打印#
#include <iostream> #include <algorithm> #include <vector> using namespace std; const int N = 11; vector<string> vec[N]; stri...
2023-04-21
0
208
题解 | #坠落的蚂蚁#
#include <algorithm> #include <cstdio> #include <vector> #include <iostream> using namespace std; const int MAX = 100 ; struct...
2023-04-20
0
247
题解 | #Grading#
#include <cmath> #include <cstdio> #include <iostream> #include <algorithm> using namespace std; void grade(int T, int G1, in...
2023-04-20
0
301
题解 | #xxx定律#
#include <iostream> using namespace std; int change(int x){ if (x > 1) { if(x % 2 == 0){ return change(x / 2) + 1; ...
2023-04-20
0
248
题解 | #手机键盘#
#include <iostream> #include <cstring> using namespace std; int a[26] = {1,2,3,1,2,3,1,2,3,1,2,3,1,2,3,1,2,3,4,1,2,3,1,2,3,4}; int b[26] ...
2023-04-12
0
241
题解 | #剩下的树#
#include <iostream> #include <vector> #include <algorithm> using namespace std; typedef pair<int, int> PII; vector<PII>...
2023-04-12
0
229
首页
上一页
1
2
3
4
5
6
7
下一页
末页