上一页 1 ··· 21 22 23 24 25 26 27 28 29 ··· 36 下一页
摘要: Day 1 AcWing 4455. 出行计划 通过差分的方式计算出每个时刻做核酸产生的贡献,然后$O(1)$的回答就好了 #include <bits/stdc++.h> using namespace std; const int N = 4e5+5; int n , m , k , b[N]; 阅读全文
posted @ 2023-01-16 11:25 PHarr 阅读(20) 评论(0) 推荐(0) 编辑
摘要: Day 1 今天主要是在补题,然后参加camp。感觉今天讲的题都好难。 Day 2 今天camp休息,所以打了一场vp哈尔滨 Day 3 AtCoder Beginner Contest 042 打算开始板刷一下atc,计划香港后每周三套的强度。 题解 Day 4 今天是参加camp,然后自己vp了 阅读全文
posted @ 2023-01-16 11:24 PHarr 阅读(32) 评论(0) 推荐(0) 编辑
摘要: A - Iroha and Haiku (ABC Edition) #include<bits/stdc++.h> using namespace std; int32_t main() { int a = 2 , b = 1; for( int i = 1 , x ; i <= 3 ; i ++ 阅读全文
posted @ 2023-01-12 13:46 PHarr 阅读(39) 评论(0) 推荐(0) 编辑
摘要: A - Mix Juice 排个序再求和就好 #include<bits/stdc++.h> using namespace std; int read(){...} int32_t main(){ int n = read() , k = read(); vector<int> a(n); for 阅读全文
posted @ 2023-01-11 14:29 PHarr 阅读(69) 评论(0) 推荐(0) 编辑
摘要: 4791. 死或生 #include<bits/stdc++.h> #define int long long using namespace std; int n , ax , ay , bx , by; int32_t main(){ cin >> n; for( int t , x , y ; 阅读全文
posted @ 2023-01-09 19:38 PHarr 阅读(17) 评论(0) 推荐(0) 编辑
摘要: N. Fibonacci Sequence(补队友题) print("1 1 2 3 5") B. So Easy(补队友题) 设$x_i$表示第$i$行加的值,$y_i$表示第$i$列加的值。则有$a_{i,j}=x_i+y_j$ | | $j-1$ | $j$ | | : : | : : | : 阅读全文
posted @ 2023-01-09 10:57 PHarr 阅读(19) 评论(0) 推荐(0) 编辑
摘要: A - Sequence of Strings #include<bits/stdc++.h> using namespace std; int32_t main(){ int n; cin >> n; vector<string> s(n); for( auto &i : s ) cin >> i 阅读全文
posted @ 2023-01-09 10:55 PHarr 阅读(40) 评论(0) 推荐(0) 编辑
摘要: Day 1 今天主要在补之前各种比赛的题目 AcWing4653. 数位排序 #include<bits/stdc++.h> #define int long long using namespace std; int32_t main(){ int n , m; cin >> n >> m; ve 阅读全文
posted @ 2023-01-09 10:45 PHarr 阅读(22) 评论(0) 推荐(0) 编辑
摘要: B.分赃 首先统计只有一个的数字个数,如果是偶数就平均分给两个人,然后把剩下的数字全部分给任意一个人。 如果是奇数个,就看时候有数字的数量大于三,如果有,就把这个数字的其中一个分给少的人,然后把剩下所有的数字分给另一个人。 #include<bits/stdc++.h> using namespac 阅读全文
posted @ 2023-01-08 15:16 PHarr 阅读(31) 评论(0) 推荐(0) 编辑
摘要: A. 最大数量 签到,用了结构化绑定 #include<bits/stdc++.h> #define int long long using namespace std; int read(){...} int32_t main(){ int n = read(); map<pair<int,int 阅读全文
posted @ 2023-01-08 15:13 PHarr 阅读(10) 评论(0) 推荐(0) 编辑
上一页 1 ··· 21 22 23 24 25 26 27 28 29 ··· 36 下一页