Chri_K

2020年10月17日

网络(network)

摘要: #include<iostream> using namespace std; const int max_M = 5000005; const int max_N = 500005; int n, m, X[max_M],Y[max_M], P[max_N], preX[max_M], preY[ 阅读全文

posted @ 2020-10-17 23:19 Chri_K 阅读(502) 评论(0) 推荐(0) 编辑
染色(colour)

摘要: #include<iostream> using namespace std; int main() { int n; cin>>n; if(n<=6) { cout<<(n+1)/2<<endl; for(int i=1;i<=n;i++) { cout<<(1+i)/2<<" "; } } el 阅读全文

posted @ 2020-10-17 16:13 Chri_K 阅读(160) 评论(0) 推荐(0) 编辑
第k小(二分)

摘要: #include<iostream> using namespace std; #define N 90000 #define ll long long #define inf 1000000000 ll s[N],t[N]; int n,k; bool check(ll x) { int tp = 阅读全文

posted @ 2020-10-17 12:25 Chri_K 阅读(71) 评论(0) 推荐(0) 编辑
购物(money)

摘要: #include<iostream> #include<iomanip> using namespace std; int main() { int n; cin>>n; int x,y; double sum=0; for(int i=1;i<=n;i++) { cin>>x>>y; sum=su 阅读全文

posted @ 2020-10-17 09:50 Chri_K 阅读(48) 评论(0) 推荐(0) 编辑