摘要:
#include<bits/stdc++.h> #include<ext/rope> using namespace std; using namespace __gnu_cxx; rope<int> *now[100005]; void print(rope<int> s) { for (int 阅读全文
摘要:
BZOJ3674:可持久化并查集加强版 n个集合 m个操作操作:1 a b 合并a,b所在集合2 k 回到第k次操作之后的状态(查询算作操作)3 a b 询问a,b是否属于同一集合,是则输出1否则输出0请注意本题采用强制在线,所给的a,b,k均经过加密,加密方法为x = x xor lastans, 阅读全文