POJ - 1797 Heavy Transportation
直接Kruskal
但是注意一点的是 从起点到终点
只要起点和终点连通就可以停止添加路径了 因为再添加 就会减小weight最小的路
1 #include <iostream> 2 #include <stdio.h> 3 #include <string> 4 #include <string.h> 5 #include <map> 6 #include <queue> 7 #include <fstream> 8 #include <algorithm> 9 #include <string.h> 10 #define READ() freopen("in.txt", "r", stdin); 11 #define MAXV 1007 12 #define MAXE 1000007 13 14 using namespace std; 15 16 struct Edge 17 { 18 int from, to, cost; 19 Edge () {} 20 Edge (int from, int to, int cost) : from(from), to(to), cost(cost) {} 21 }edge[MAXE]; 22 int num = 0; 23 void Add(int from, int to, int cost) 24 { 25 edge[num++] = Edge(from, to, cost); 26 } 27 int par[MAXV]; 28 int find(int x) 29 { 30 if (x == par[x]) return x; 31 else return par[x] = find(par[x]); 32 } 33 void unite(int x, int y) 34 { 35 int px = find(x), py = find(y); 36 if (px == py) return ; 37 else par[py] = px; 38 } 39 bool same(int x, int y) 40 { 41 int px = find(x), py = find(y); 42 return px == py; 43 } 44 45 bool cmp(Edge e1, Edge e2) 46 { 47 return e1.cost > e2.cost; 48 } 49 50 int dist[MAXE]; 51 int n, m; 52 int Kruskal() 53 { 54 int n1 = 0; 55 sort(edge, edge+num, cmp); 56 for (int i = 0; i < num; i++) 57 { 58 Edge e = edge[i]; 59 if (!same(e.from, e.to)) 60 { 61 unite(e.from, e.to); 62 dist[n1++] = e.cost; 63 } 64 if (same(1, n)) break; 65 } 66 sort(dist, dist+n1); 67 return dist[0]; 68 } 69 int main() 70 { 71 READ() 72 int T,cnt = 1; 73 scanf("%d", &T); 74 while (T--) 75 { 76 scanf("%d%d", &n, &m); 77 for (int i = 1;i <= n; i++) par[i] = i; 78 memset(edge, 0, sizeof(edge)); 79 for (int i = 0; i < m; i++) 80 { 81 int from, to, cost; 82 scanf("%d%d%d", &from, &to, &cost); 83 Add(from, to, cost); 84 Add(to, from, cost); 85 } 86 int ans = Kruskal(); 87 printf("Scenario #%d:\n%d\n\n", cnt++, ans); 88 } 89 }
标签:
图论
【推荐】还在用 ECharts 开发大屏?试试这款永久免费的开源 BI 工具!
【推荐】国内首个AI IDE,深度理解中文开发场景,立即下载体验Trae
【推荐】编程新体验,更懂你的AI,立即体验豆包MarsCode编程助手
【推荐】轻量又高性能的 SSH 工具 IShell:AI 加持,快人一步
· 35岁程序员的中年求职记:四次碰壁后的深度反思
· 继承的思维:从思维模式到架构设计的深度解析
· 如何在 .NET 中 使用 ANTLR4
· 后端思维之高并发处理方案
· 理解Rust引用及其生命周期标识(下)
· 35岁程序员的中年求职记:四次碰壁后的深度反思
· 当职场成战场:降职、阴谋与一场硬碰硬的抗争
· ShadowSql之.net sql拼写神器
· 无需WebView,Vue也能开发跨平台桌面应用
· 使用MCP C# SDK开发MCP Server + Client