牛客568792594号
牛客568792594号
全部文章
分类
归档
标签
去牛客网
登录
/
注册
牛客568792594号的博客
全部文章
(共64篇)
题解 | #成绩排序#
#include <bits/stdc++.h> using namespace std; typedef pair<int, int> PII; vector<PII> stu; int main(){ int n; cin >> n; ...
2024-03-08
0
161
题解 | #排序#
#include <bits/stdc++.h> using namespace std; int main(){ int n; while (cin >> n){ vector<int> a(n); for (int i=0; i<n; i...
2024-03-08
0
157
题解 | #xxx定律#
#include <bits/stdc++.h> using namespace std; int main(){ int n; int cnt; while (scanf("%d", &n) != EOF){ cnt = 0; while...
2024-03-08
0
195
题解 | #剩下的树#
#include <bits/stdc++.h> using namespace std; typedef pair<int, int> PII; const int N = 10010; bool st[N]; int main(){ int l, m; ...
2024-03-07
0
201
题解 | #日期差值#
#include <bits/stdc++.h> using namespace std; const int months[]={ 0,31,28,31,30,31,30,31,31,30,31,30,31 }; int is_leap(int year){ if (yea...
2024-03-07
0
190
题解 | #日期累加#
#include <bits/stdc++.h> using namespace std; const int months[]={ 0,31,28,31,30,31,30,31,31,30,31,30,31 }; int is_leap(int year){ if((year...
2024-03-06
0
166
题解 | #打印日期#
#include <bits/stdc++.h> using namespace std; const int months[]={ 0,31,28,31,30,31,30,31,31,30,31,30,31 }; int is_leap(int year){ if((year...
2024-03-06
0
173
题解 | #最小邮票数#
#include <bits/stdc++.h> using namespace std; const int N = 1010; int w[N]; // 价格 int f[N][N]; // 前i张邮票凑成j分的最小张数 // f[0-n][0] = 0; // f[0][1...
2024-03-06
0
221
题解 | #点菜问题#
#include <bits/stdc++.h> using namespace std; const int N = 1010; int p[N]; //价格 int v[N]; // 可口程度 int f[N][N]; // f[i][j] 从前i种样品中取,不超过j元的最大评分...
2024-03-06
0
192
题解 | #今年的第几天?#
#include <bits/stdc++.h> using namespace std; const int months[]={ 0, 31, 28, 31, 30, 31, 30, 31, 31, 30, 31, 30, 31 }; int is_leap(int year...
2024-03-05
0
187
首页
上一页
1
2
3
4
5
6
7
下一页
末页