結果

問題 No.1390 Get together
ユーザー tentententen
提出日時 2021-02-13 16:44:35
言語 Java21
(openjdk 21)
結果
TLE  
(最新)
AC  
(最初)
実行時間 -
コード長 1,598 bytes
コンパイル時間 2,516 ms
コンパイル使用メモリ 79,464 KB
実行使用メモリ 105,376 KB
最終ジャッジ日時 2024-07-20 19:51:41
合計ジャッジ時間 40,362 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 140 ms
41,236 KB
testcase_01 AC 135 ms
41,532 KB
testcase_02 AC 135 ms
41,488 KB
testcase_03 AC 283 ms
47,144 KB
testcase_04 AC 268 ms
47,160 KB
testcase_05 AC 282 ms
47,612 KB
testcase_06 AC 266 ms
47,592 KB
testcase_07 AC 261 ms
46,960 KB
testcase_08 AC 259 ms
46,780 KB
testcase_09 AC 291 ms
48,016 KB
testcase_10 AC 134 ms
41,160 KB
testcase_11 AC 133 ms
41,192 KB
testcase_12 AC 140 ms
41,540 KB
testcase_13 AC 143 ms
41,184 KB
testcase_14 AC 140 ms
41,192 KB
testcase_15 AC 133 ms
41,012 KB
testcase_16 AC 1,665 ms
65,212 KB
testcase_17 AC 1,706 ms
90,060 KB
testcase_18 AC 1,769 ms
83,396 KB
testcase_19 AC 1,986 ms
104,020 KB
testcase_20 TLE -
testcase_21 AC 1,993 ms
105,376 KB
testcase_22 AC 1,860 ms
98,100 KB
testcase_23 AC 1,923 ms
98,040 KB
testcase_24 AC 1,900 ms
98,136 KB
testcase_25 AC 1,997 ms
104,808 KB
testcase_26 TLE -
testcase_27 TLE -
testcase_28 TLE -
testcase_29 AC 1,887 ms
93,788 KB
testcase_30 AC 1,937 ms
95,520 KB
testcase_31 AC 1,904 ms
93,492 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Main {
    public static void main(String[] args) {
        Scanner sc = new Scanner(System.in);
        int n = sc.nextInt();
        int m = sc.nextInt();
        HashMap<Integer, TreeSet<Integer>> counts = new HashMap<>();
        for (int i = 0; i < n; i++) {
            int b = sc.nextInt() - 1;
            int c = sc.nextInt();
            if (!counts.containsKey(c)) {
                counts.put(c, new TreeSet<>());
            }
            counts.get(c).add(b);
        }
        int ans = 0;
        UnionFindTree uft = new UnionFindTree(m);
        for (TreeSet<Integer> set : counts.values()) {
            int x = set.pollFirst();
            for (int y : set) {
                if (!uft.same(x, y)) {
                    ans++;
                    uft.unite(x, y);
                }
            }
        }
        System.out.println(ans);
    }
    
    static class UnionFindTree {
        int[] parents;
        
        public UnionFindTree(int x) {
            parents = new int[x];
            for (int i = 0; i < x; 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(y) == find(x);
        }
        
        public void unite(int x, int y) {
            if (!same(x, y)) {
                parents[find(x)] = find(y);
            }
        }
    }
}
0