畅通工程
Problem Description
省政府“畅通工程”的目标是使全省任何两个村庄间都可以实现公路交通(但不一定有直接的公路相连,只要能间接通过公路可达即可)。经过调查评估,得到的统计表中列出了有可能建设公路的若干条道路的成本。现请你编写程序,计算出全省畅通需要的最低成本。
Input
测试输入包含若干测试用例。每个测试用例的第1行给出评估的道路条数 N、村庄数目M ( < 100 );随后的 N
行对应村庄间道路的成本,每行给出一对正整数,分别是两个村庄的编号,以及此两村庄间道路的成本(也是正整数)。为简单起见,村庄从1到M编号。当N为0时,全部输入结束,相应的结果不要输出。
Output
对每个测试用例,在1行里输出全省畅通需要的最低成本。若统计数据不足以保证畅通,则输出“?”。
Sample Input
3 3
1 2 1
1 3 2
2 3 4
1 3
2 3 2
0 100
Sample Output
3
?
Source
题目类型:MST
算法分析:直接使用kruskal求解即可
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 |
#include <set> #include <bitset> #include <list> #include <map> #include <stack> #include <queue> #include <deque> #include <string> #include <vector> #include <ios> #include <iostream> #include <fstream> #include <sstream> #include <iomanip> #include <algorithm> #include <utility> #include <complex> #include <numeric> #include <functional> #include <cmath> #include <ctime> #include <climits> #include <cstdarg> #include <cstdio> #include <cstdlib> #include <cstring> #include <cctype> #include <cassert> #define lson rt << 1, l, m #define rson rt << 1 | 1, m + 1, r using namespace std; const int INF = 0x7FFFFFFF; const int MOD = 1000000000 + 7; const double EPS = 1e-10; const double PI = 2 * acos (0.0); const int maxn = 10000 + 66; struct Node { int u, v, w; }; Node ans[maxn]; int n, m; bool cmp (Node a, Node b) { return a.w < b.w; } int parent[maxn]; int UnFind (int val) { if (parent[val] == val) return val; return parent[val] = UnFind (parent[val]); } int kruskal () { int remain = m, tot = 0; for (int i = 0; i < n && remain > 1; i++) { int a = UnFind (ans[i].u), b = UnFind (ans[i].v); if (a != b) { parent[a] = b; tot += ans[i].w; remain--; } } if (remain > 1) return -1; return tot; } int main() { // freopen ("aaa.txt", "r", stdin); while (scanf ("%d%d", &n, &m) != EOF) { if (n == 0) break; for (int i = 0; i <= m;i++) parent[i] = i; ; for (int i = 0; i < n; i++) scanf ("%d%d%d", &ans[i].u, &ans[i].v, &ans[i].w); sort (ans, ans + n, cmp); int temp = kruskal (); if (temp == -1) cout << "?" << endl; else cout << temp << endl; } return 0; } |
- « 上一篇:hdu1846
- hdu1950:下一篇 »