結果

問題 No.1639 最小通信路
ユーザー tentententen
提出日時 2022-08-05 16:59:01
言語 Java21
(openjdk 21)
結果
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
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 53 ms
37,048 KB
testcase_01 AC 52 ms
36,692 KB
testcase_02 AC 62 ms
36,696 KB
testcase_03 AC 68 ms
37,496 KB
testcase_04 AC 156 ms
41,884 KB
testcase_05 AC 54 ms
36,828 KB
testcase_06 AC 55 ms
36,780 KB
testcase_07 AC 52 ms
36,984 KB
testcase_08 AC 58 ms
36,800 KB
testcase_09 AC 53 ms
36,964 KB
testcase_10 AC 53 ms
36,696 KB
testcase_11 AC 55 ms
36,896 KB
testcase_12 AC 54 ms
36,632 KB
testcase_13 AC 57 ms
36,788 KB
testcase_14 AC 51 ms
36,972 KB
testcase_15 AC 54 ms
36,908 KB
testcase_16 AC 55 ms
36,920 KB
testcase_17 AC 57 ms
36,924 KB
testcase_18 AC 53 ms
36,396 KB
testcase_19 AC 53 ms
36,400 KB
testcase_20 AC 57 ms
37,084 KB
testcase_21 AC 51 ms
36,348 KB
testcase_22 AC 54 ms
36,532 KB
testcase_23 AC 54 ms
36,620 KB
testcase_24 AC 54 ms
36,500 KB
testcase_25 AC 55 ms
37,092 KB
testcase_26 AC 54 ms
36,404 KB
testcase_27 AC 54 ms
36,716 KB
testcase_28 AC 52 ms
36,400 KB
testcase_29 AC 56 ms
36,396 KB
testcase_30 AC 61 ms
36,836 KB
testcase_31 AC 53 ms
36,912 KB
testcase_32 AC 57 ms
37,076 KB
testcase_33 AC 54 ms
36,772 KB
testcase_34 AC 58 ms
36,852 KB
testcase_35 AC 84 ms
38,004 KB
testcase_36 AC 66 ms
37,736 KB
testcase_37 AC 57 ms
37,152 KB
testcase_38 AC 53 ms
36,892 KB
testcase_39 AC 53 ms
36,500 KB
testcase_40 AC 54 ms
36,396 KB
testcase_41 AC 54 ms
36,860 KB
testcase_42 AC 66 ms
37,028 KB
testcase_43 AC 54 ms
36,684 KB
testcase_44 AC 54 ms
36,692 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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();
    }
}
0