08 2020 档案
摘要:一般开头 1 <!DOCTYPE html> 2 <html> 3 4 <head> 5 <meta charset="UTF-8"> 6 <title>这是一个HTML5的网页</title> 7 </head> 8 9 <body> 10 <p>Hello HTML5</p> 11 </body
阅读全文
posted @ 2020-08-13 14:47
__ZRH
摘要:参考https://msd.misuland.com/pd/4425384081022256588 侵删。 变量 struct node { int ls, //左儿子下标 rs, //右儿子下标 r, //随机权值 v, //权值 size; //树的大小 } tree[maxn]; int to
阅读全文
摘要:P3386 【模板】二分图最大匹配 #include<cstdio> #include<iostream> #include<vector> #include<cstring> #include<algorithm> using namespace std; const int maxn = 505
阅读全文