結果
問題 |
No.1639 最小通信路
|
ユーザー |
![]() |
提出日時 | 2022-08-05 16:59:01 |
言語 | Java (openjdk 23) |
結果 |
AC
|
実行時間 | 156 ms / 2,000 ms |
コード長 | 2,000 bytes |
コンパイル時間 | 2,221 ms |
コンパイル使用メモリ | 77,016 KB |
実行使用メモリ | 41,884 KB |
最終ジャッジ日時 | 2024-09-15 12:33:47 |
合計ジャッジ時間 | 6,748 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge4 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 2 |
other | AC * 43 |
ソースコード
import java.io.*; import java.util.*; public class Main { public static void main(String[] args) throws Exception { Scanner sc = new Scanner(); int n = sc.nextInt(); UnionFindTree uft = new UnionFindTree(n); int count = 0; while (true) { int a = sc.nextInt() - 1; int b = sc.nextInt() - 1; String cost = sc.next(); if (!uft.same(a, b)) { uft.unite(a, b); count++; if (count >= n - 1) { System.out.println(cost); return; } } } } static class UnionFindTree { int[] parents; public UnionFindTree(int size) { parents = new int[size]; for (int i = 0; i < size; i++) { parents[i] = i; } } public int find(int x) { if (x == parents[x]) { return x; } else { return parents[x] = find(parents[x]); } } public boolean same(int x, int y) { return find(x) == find(y); } public void unite(int x, int y) { parents[find(x)] = find(y); } } } class Scanner { BufferedReader br = new BufferedReader(new InputStreamReader(System.in)); StringTokenizer st = new StringTokenizer(""); public Scanner() throws Exception { } public int nextInt() throws Exception { return Integer.parseInt(next()); } public long nextLong() throws Exception { return Long.parseLong(next()); } public double nextDouble() throws Exception { return Double.parseDouble(next()); } public String next() throws Exception { while (!st.hasMoreTokens()) { st = new StringTokenizer(br.readLine()); } return st.nextToken(); } }