随笔分类 -  并查集

摘要:#define _CRT_SECURE_NO_DEPRECATE #include #include #include #include #include using namespace std; #define maxn 10005 struct node { int x, y, w; }e[maxn]; int n, m; int pre[1000]; int find(int x)... 阅读全文
posted @ 2017-03-16 20:15 web之路 阅读(119) 评论(0) 推荐(0)