随笔分类 - 板子
摘要:对拍 #include <bits/stdc++.h> using namespace std; // make 是数据生成器,其他的是两份代码 bool work() { system("make.exe > input.txt"); system("DFS.exe < input.txt > D
阅读全文
摘要:数据结构 玄学数据结构——珂朵莉树 struct Node { int l,r;// [l,r] mutable int v; // 需要维护的信息 Node(int LL ,int rr = -1,int vv = 0):l(LL), r(rr),v(vv){} bool operator<(co
阅读全文