摘要: int mincost[maxn]; bool used[maxn]; int MST() { _for(i,0,V) { mincost[i] = INF; used[i] = false; } mincost[0] = 0; int res = 0; while(1) { int v = -1; 阅读全文
posted @ 2019-03-24 18:59 Asurudo 阅读(191) 评论(0) 推荐(0) 编辑