C国由n个小岛组成,为了方便小岛之间联络,C国在小岛间建立了m座大桥,每座大桥连接两座小岛。两个小岛间可能存在多座桥连接。然而,由于海水冲刷,有一些大桥面临着不能使用的危险。如果两个小岛间的所有大桥都不能使用,则这两座小岛就不能直接到达了。然而,只要这两座小岛的居民能通过其他的桥或者其他的小岛互相到达,他们就会安然无事。但是,如果前一天两个小岛之间还有方法可以到达,后一天却不能到达了,居民们就会一起发起抗议。
现在C国的国王已经知道了每座桥能使用的天数,超过这个天数就不能使用了。现在他想知道居民们一共会发起多少次抗议。
4 4 1 2 2 1 3 2 2 3 1 3 4 3
2
#include <iostream> #include <cstdio> #include <algorithm> using namespace std; int n[10005]; struct node{ int u; int v; int w; }; node a[100005]; int cmp(node aa,node bb){ return aa.w<bb.w; } int find_f(int o){ if(n[o]!=o) n[o]=find_f(n[o]); return n[o]; } int union_t(int x,int y){ int fx=find_f(x); int fy=find_f(y); if(fx!=fy){ n[fx]=fy; return 1; }else{ return 0; } } int main() { int nn,mm; while(~scanf("%d %d",&nn,&mm)){ for(int i=0;i<mm;i++){ if(i>=1&&i<=nn){ n[i]=i; } scanf("%d %d %d",&a[i].u,&a[i].v,&a[i].w); } //if(nn==1){ // printf("0\n"); // return 0; //} if(nn==mm){ n[nn]=nn; } sort(a,a+mm,cmp); int cou=0; int cou1=-99999; for(int i=mm-1;i>=0;i--){ if(union_t(a[i].u,a[i].v)&&a[i].w!=cou1){ cou++; cou1=a[i].w; } } printf("%d\n",cou); } return 0; }
原文:http://www.cnblogs.com/TWS-YIFEI/p/5854612.html