摘要: 正向表 int tot=0,h[M]; struct edge{ int nxt; int to,cost; }G[3*M]; void add(int a,int b,int c){ G[++tot]=(edge){h[a],b,c}; h[a]=tot; } LCA 跳重链 void dfs(i 阅读全文
posted @ 2021-10-15 19:15 zeroy0410 阅读(57) 评论(0) 推荐(0) 编辑