結果

問題 No.1390 Get together
ユーザー tentententen
提出日時 2021-02-13 16:43:13
言語 Java21
(openjdk 21)
結果
AC  
実行時間 1,810 ms / 2,000 ms
コード長 1,598 bytes
コンパイル時間 2,755 ms
コンパイル使用メモリ 79,936 KB
実行使用メモリ 95,748 KB
最終ジャッジ日時 2024-07-20 19:49:45
合計ジャッジ時間 32,299 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 102 ms
40,316 KB
testcase_01 AC 109 ms
41,104 KB
testcase_02 AC 110 ms
41,048 KB
testcase_03 AC 242 ms
47,244 KB
testcase_04 AC 239 ms
46,492 KB
testcase_05 AC 245 ms
47,748 KB
testcase_06 AC 236 ms
46,044 KB
testcase_07 AC 227 ms
46,416 KB
testcase_08 AC 231 ms
46,568 KB
testcase_09 AC 248 ms
48,328 KB
testcase_10 AC 99 ms
39,528 KB
testcase_11 AC 112 ms
41,188 KB
testcase_12 AC 122 ms
41,388 KB
testcase_13 AC 113 ms
41,180 KB
testcase_14 AC 112 ms
40,288 KB
testcase_15 AC 120 ms
41,144 KB
testcase_16 AC 1,300 ms
65,352 KB
testcase_17 AC 1,382 ms
89,424 KB
testcase_18 AC 1,458 ms
72,280 KB
testcase_19 AC 1,663 ms
95,320 KB
testcase_20 AC 1,627 ms
94,960 KB
testcase_21 AC 1,721 ms
94,880 KB
testcase_22 AC 1,482 ms
87,004 KB
testcase_23 AC 1,525 ms
86,692 KB
testcase_24 AC 1,520 ms
86,940 KB
testcase_25 AC 1,665 ms
94,808 KB
testcase_26 AC 1,729 ms
94,764 KB
testcase_27 AC 1,584 ms
93,904 KB
testcase_28 AC 1,810 ms
94,784 KB
testcase_29 AC 1,732 ms
95,208 KB
testcase_30 AC 1,698 ms
93,448 KB
testcase_31 AC 1,731 ms
95,748 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(x) == find(y);
        }
        
        public void unite(int x, int y) {
            if (!same(x, y)) {
                parents[find(x)] = find(y);
            }
        }
    }
}
0