摘要:
https://codeforces.com/contest/1978 C: D: #include <bits/stdc++.h> using namespace std; #define pii pair<int,int> #define mkp make_pair #define lowbit 阅读全文
摘要:
https://codeforces.com/contest/1979 补了再发,最近写的题太多了搞不过来 阅读全文
摘要:
https://codeforces.com/gym/105336 L: 签到,队友写的 K: 签到,发现每次就是取二 B: 瞎猜过了,结论题 #include <bits/stdc++.h> using namespace std; #define pii pair<int,int> #defin 阅读全文
摘要:
别偷吃我的骨灰 阅读全文
摘要:
这场比赛由于急躁心态不稳导致abc三题接连wa,这时候心态几乎爆炸。而d题思路其实很清晰,但是因为set使用不熟练卡住。最后没用set十分钟就写完过了。这时候只剩下十多分钟来不及写别的了。结束 收获主要就是:还是要注意边界的细节( ab题就不放了。。 C - Rudolf and the Ugly 阅读全文
摘要:
线段树一些不太板的练手? hdu单峰数列 权值线段树 hdu第7场1007https://acm.hdu.edu.cn/showproblem.php?pid=7511 #include <iostream> #include <algorithm> #include <cstring> #incl 阅读全文
摘要:
spfa struct Node{ int w,to,nxt; }edg[maxn]; int head[maxn],tot; void add_edge(int u,int w,int v){ edg[++tot].nxt=head[u];edg[tot].to=v; edg[tot].w=w;h 阅读全文
摘要:
#include<bits/stdc++.h> using namespace std; #define pii pair<int,int> #define mkp make_pair #define pb push_back #define mid ((l+r)>>1) #define ls(x) 阅读全文
摘要:
C. Mad MAD Sum 手玩规律题,预处理两次就能得到一个规律的答案。 #include<bits/stdc++.h> using namespace std; #define ls(x) (x<<1) #define rs(x) ((x<<1)+1) int read() { int ret 阅读全文