結果

問題 No.1390 Get together
ユーザー tenten
提出日時 2021-02-13 16:44:35
言語 Java
(openjdk 23)
結果
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
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 3
other AC * 25 TLE * 4
権限があれば一括ダウンロードができます

ソースコード

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