LA 3027 合作网络 并查集
摘要:
题目链接:https://icpcarchive.ecs.baylor.edu/index.php?option=com_onlinejudge&Itemid=8&page=show_problem&problem=1028比较简单,用数组d[i]表示结点i和祖先结点的距离,查询时压缩路径并更新d[]数组。刘汝佳大白书(P193):贴代码: 1 #include 2 #include 3 const int N = 20004; 4 int pa[N],d[N]; 5 int findset(int x) 6 { 7 if(pa[x] == -1) return x; 阅读全文
posted @ 2013-08-28 19:26 allh123 阅读(197) 评论(0) 推荐(0) 编辑