摘要: /* 询问每个节点子树上的颜色数 */ #include <bits/stdc++.h> using namespace std; const int maxn=1e5+5; struct edge{ int v,next; }E[maxn<<1]; int head[maxn],tot=0; vo 阅读全文
posted @ 2020-11-22 16:58 UCPRER 阅读(75) 评论(0) 推荐(0) 编辑