結果

問題 No.1639 最小通信路
ユーザー tentententen
提出日時 2021-08-10 08:57:21
言語 Java21
(openjdk 21)
結果
AC  
実行時間 154 ms / 2,000 ms
コード長 1,852 bytes
コンパイル時間 2,563 ms
コンパイル使用メモリ 78,016 KB
実行使用メモリ 55,264 KB
最終ジャッジ日時 2024-09-22 10:16:04
合計ジャッジ時間 8,774 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 52 ms
50,368 KB
testcase_01 AC 53 ms
50,348 KB
testcase_02 AC 127 ms
52,744 KB
testcase_03 AC 153 ms
55,264 KB
testcase_04 AC 154 ms
55,116 KB
testcase_05 AC 83 ms
51,220 KB
testcase_06 AC 113 ms
52,268 KB
testcase_07 AC 53 ms
50,452 KB
testcase_08 AC 123 ms
52,768 KB
testcase_09 AC 58 ms
50,528 KB
testcase_10 AC 74 ms
50,912 KB
testcase_11 AC 119 ms
52,572 KB
testcase_12 AC 81 ms
51,204 KB
testcase_13 AC 120 ms
52,888 KB
testcase_14 AC 53 ms
50,256 KB
testcase_15 AC 76 ms
51,172 KB
testcase_16 AC 116 ms
52,488 KB
testcase_17 AC 125 ms
52,528 KB
testcase_18 AC 57 ms
49,980 KB
testcase_19 AC 104 ms
52,168 KB
testcase_20 AC 123 ms
52,548 KB
testcase_21 AC 54 ms
50,284 KB
testcase_22 AC 79 ms
51,032 KB
testcase_23 AC 112 ms
52,212 KB
testcase_24 AC 80 ms
51,056 KB
testcase_25 AC 91 ms
51,916 KB
testcase_26 AC 63 ms
50,392 KB
testcase_27 AC 56 ms
50,160 KB
testcase_28 AC 54 ms
49,896 KB
testcase_29 AC 122 ms
52,524 KB
testcase_30 AC 132 ms
52,952 KB
testcase_31 AC 84 ms
51,184 KB
testcase_32 AC 125 ms
52,852 KB
testcase_33 AC 68 ms
50,900 KB
testcase_34 AC 124 ms
52,492 KB
testcase_35 AC 141 ms
53,328 KB
testcase_36 AC 121 ms
52,712 KB
testcase_37 AC 127 ms
52,984 KB
testcase_38 AC 56 ms
50,232 KB
testcase_39 AC 93 ms
51,920 KB
testcase_40 AC 58 ms
50,016 KB
testcase_41 AC 75 ms
50,908 KB
testcase_42 AC 128 ms
53,052 KB
testcase_43 AC 80 ms
50,952 KB
testcase_44 AC 54 ms
50,036 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.io.*;
import java.util.*;
import java.math.BigInteger;

public class Main {
    public static void main(String[] args) throws Exception {
        Scanner sc = new Scanner();
        int n = sc.nextInt();
        UnionFindTree uft = new UnionFindTree(n);
        String ans = "";
        for (int i = 0; i < n * (n - 1) / 2; i++) {
            int a = sc.nextInt() - 1;
            int b = sc.nextInt() - 1;
            String s = sc.next();
            if (!uft.same(a, b)) {
                uft.unite(a, b);
                ans = s;
            }
        }
        System.out.println(ans);
    }
    
    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 String next() throws Exception {
        if (!st.hasMoreTokens()) {
            st = new StringTokenizer(br.readLine());
        }
        return st.nextToken();
    }
}
0