摘要: 最简单的并查集。。。 代码: #include<stdio.h> #include<string.h> #include<algorithm> using namespace std; int pre[1200]; int mark[1300]; int find(int x){ return pr 阅读全文
posted @ 2015-02-12 19:30 wojiaohuangyu 阅读(8) 评论(0) 推荐(0)