hdu 并查集专题
摘要:
http://acm.hdu.edu.cn/diy/contest_show.php?cid=165621.How Many TablesView Code 1 #include<stdio.h> 2 int root[1001]; 3 int find(int x) 4 { 5 int r=x; 6 while(r!=root[r]) 7 r=root[r]; 8 int i=x,j; 9 /*10 while(i!=r)11 {12 j=root[i];13 root[i]=r;14 ... 阅读全文
posted @ 2012-08-11 16:47 仁者无敌8勇者无惧 阅读(228) 评论(0) 推荐(0) 编辑