摘要: #include #include #include using namespace std; const int maxn=1e6+10; const int maxm=2*maxn; struct Edge{ int u,v,w; }edge[maxm]; int head[maxn],cnt; inline void add(int u,int v,int w){edge[++cnt].... 阅读全文
posted @ 2017-12-23 10:15 baka 阅读(152) 评论(0) 推荐(0) 编辑