上一页 1 ··· 3 4 5 6 7 8 9 10 11 ··· 36 下一页
摘要: A - 小苯的九宫格 #include <bits/stdc++.h> using namespace std; int main(){ vector<int> a(11); for(int i = 1; i <= 9; i ++) cin >> a[i]; string s; cin >> s; 阅读全文
posted @ 2024-05-28 17:43 PHarr 阅读(18) 评论(0) 推荐(0) 编辑
摘要: A - 欢迎来到辽宁省赛 #include <bits/stdc++.h> using namespace std; int main(){ cout << "27\n"; return 0; } B - 胜率 首先如果参加了 10000 局比赛,则一定会有当前胜率的情况出现。 所以我们枚举一下分母 阅读全文
posted @ 2024-05-14 17:50 PHarr 阅读(124) 评论(0) 推荐(0) 编辑
摘要: A-Bingbong的化学世界 #include<bits/stdc++.h> using namespace std; const int maxn = 1001; int a[maxn]; int main() { string t = "...|..."; vector<string> x(6 阅读全文
posted @ 2024-05-06 18:08 PHarr 阅读(8) 评论(0) 推荐(0) 编辑
摘要: A-小红进地下城 a = input() b = input() if a == b : print("Yes") else: print("No") B-小红打怪 #include <bits/stdc++.h> using namespace std; int main() { int n, m 阅读全文
posted @ 2024-05-06 18:02 PHarr 阅读(5) 评论(0) 推荐(0) 编辑
摘要: https://voj.mobi/contest/242/problems,密码2024ecnutsol A - 调和与折中 #include <bits/stdc++.h> using namespace std; using i32 = int32_t; using i64 = long lon 阅读全文
posted @ 2024-05-04 17:09 PHarr 阅读(32) 评论(0) 推荐(0) 编辑
摘要: B. Balloon Darts 首先上一些计算几何的板子。 如果\(k\)条直线覆盖\(n\)个点成立的,则有两种情况。如果\(n \le k\)则一定成立,反之在前\(k+1\)个点中必然存在两个点被一条直线经过,我们可以枚举出这条直线,然后暴力的删掉点,然后递归做。 #include <bit 阅读全文
posted @ 2024-05-01 23:18 PHarr 阅读(61) 评论(0) 推荐(0) 编辑
摘要: A. Maximum Element In A Stack 按照题目模拟就好,栈内的最大值可以维护单调栈解决。 #include <bits/stdc++.h> using namespace std; using i64 = long long; using ui32 = unsigned int 阅读全文
posted @ 2024-04-28 16:06 PHarr 阅读(16) 评论(0) 推荐(0) 编辑
摘要: A-超级闪光牛可乐 #include <bits/stdc++.h> using namespace std; using f64 = double_t; using i32 = int32_t; using i64 = int64_t; using u64 = uint64_t; #define 阅读全文
posted @ 2024-04-28 16:05 PHarr 阅读(4) 评论(0) 推荐(0) 编辑
摘要: A. Stickogon #include <bits/stdc++.h> using namespace std; using i32 = int32_t; using i64 = long long; #define int i64 using vi = vector<int>; const i 阅读全文
posted @ 2024-04-23 22:01 PHarr 阅读(15) 评论(0) 推荐(0) 编辑
摘要: https://codeforces.com/gym/104883 A #include <bits/stdc++.h> using namespace std; using i32 = int32_t; using i64 = long long; using vi = vector<int>; 阅读全文
posted @ 2024-04-22 14:50 PHarr 阅读(59) 评论(0) 推荐(0) 编辑
上一页 1 ··· 3 4 5 6 7 8 9 10 11 ··· 36 下一页