
cf比赛题解
Hxxj
这个作者很懒,什么都没留下…
展开
-
Circular Local MiniMax
Codeforces Round #794 (Div. 2)原创 2022-06-23 20:57:43 · 171 阅读 · 0 评论 -
Educational Codeforces Round 128 (Rated for Div. 2) A~B
A~Minimums and Maximums#include <bits/stdc++.h>using namespace std;typedef long long ll;const int N = 201000;int t; int main(){ cin>>t; while(t--) { int l1,r1,l2,r2; cin>>l1>>r1>>l2>>r原创 2022-05-14 04:15:00 · 375 阅读 · 2 评论 -
Codeforces Round #790 (Div. 4) C~E 题解
#include <bits/stdc++.h>using namespace std;typedef long long ll;const int N = 201;int t; int main(){ cin>>t; while(t--) { int n,m,min1=1e6; string s[N]; cin>>n>>m; for(int i=0;i&l...原创 2022-05-11 00:53:22 · 239 阅读 · 0 评论 -
Codeforces Round #789 (Div. 2) A~B
#include <bits/stdc++.h>using namespace std;typedef long long ll;const int N = 201000;int t; int main(){ cin>>t; while(t--) { int n,a[N]={0},b[N]={0},ans=0,res=0,ok=1; cin>>n; for(int i=1;i<=...原创 2022-05-09 01:18:38 · 93 阅读 · 0 评论