摘要:
A-DFS搜索 暴力判就行 #include<bits/stdc++.h> using namespace std; using i32 = int32_t; using i64 = long long; using i128 = __int128; #define int long long us 阅读全文
摘要:
赛时我们通过了7题,排名25。 A 摩斯电码 队友代码 #include<bits/stdc++.h> using namespace std; #define int long long typedef pair<int, int> P; map<string, string> mp; void 阅读全文
摘要:
P8840 [传智杯 #4 初赛] 报告赋分 #include<bits/stdc++.h> using namespace std; #define int long long using vi = vector<int>; using i32 = int32_t; using pii = pai 阅读全文
摘要:
A - Capitalized? #include<bits/stdc++.h> using namespace std; #define int long long using vi = vector<int>; using i32 = int32_t; using pii = pair<int, 阅读全文
摘要:
P8761 [蓝桥杯 2021 国 BC] 大写 #include<bits/stdc++.h> using namespace std; #define int long long using vi = vector<int>; using i32 = int32_t; using pii = p 阅读全文
摘要:
A-Flower 因为时间各不相同,所以时间是假的,直接去最大\(k\)个就行 #include<bits/stdc++.h> using namespace std; #define int long long using vi = vector<int>; using i32 = int32_t 阅读全文
摘要:
7-1 最好的文档 #include <bits/stdc++.h> using namespace std; using i32 = int32_t; i32 main() { ios::sync_with_stdio(false), cin.tie(nullptr); cout << "Good 阅读全文
摘要:
E. Matrix Distances 因为行列的贡献是独立的,所以可以按照颜色分别统计 #include <bits/stdc++.h> using namespace std; #define int long long using i32 = int32_t; using vi = vecto 阅读全文
摘要:
A. Rook #include <bits/stdc++.h> using namespace std; #define int long long using pii = pair<int, int>; using node = pii; using i32 = int32_t; void so 阅读全文
摘要:
A. Modulo Ruins the Legend 首先题目要求的是$(\sum (a_i + s + i \times d))% m $的最小值 等价于求\((\sum a_i + n\times s + \frac{n(n+1)}{2} \times d) \%m\)的最小值 令\(sum = 阅读全文