摘要:
https://loj.ac/problem/10131 阅读全文
摘要:
#include using namespace std; struct node{ int to,next,w; }e[1000001]; int head[500000],num=0,N,n,m; int grand[500001][20],dis[500001][20],depth[500001]; inline void add(int x,int y,int c) { ... 阅读全文