摘要:
#include<iostream>#include<algorithm>using namespace std;//int edge[110][110];int flag[110];int p[110];struct node{ int start; int end; int cost;};node edge[10010];int cmp(const node& c,const node& d){ return c.cost<d.cost;}int FindSet(int x){ int temp=p[x]; if(x!=p[x]) p[x]=F 阅读全文