摘要:
krustra最小生成树View Code #include <iostream>#include <cstdio>#include <cstdlib>#include <cstring>#include <algorithm>using namespace std;#define maxm 10005#define maxn 2005struct Edge{ int a, b, l;}edge[maxm];int father[maxn];int n, m;bool operator < (const Edge &a, 阅读全文
posted @ 2011-05-27 10:46
undefined2024
阅读(401)
评论(0)
推荐(0)