結果

問題 No.556 仁義なきサルたち
ユーザー neko_the_shadowneko_the_shadow
提出日時 2019-05-17 17:30:55
言語 Java21
(openjdk 21)
結果
AC  
実行時間 459 ms / 2,000 ms
コード長 1,764 bytes
コンパイル時間 2,300 ms
コンパイル使用メモリ 78,216 KB
実行使用メモリ 59,952 KB
最終ジャッジ日時 2024-09-17 05:57:58
合計ジャッジ時間 9,406 ms
ジャッジサーバーID
(参考情報)
judge5 / judge6
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 137 ms
53,848 KB
testcase_01 AC 146 ms
54,152 KB
testcase_02 AC 140 ms
53,800 KB
testcase_03 AC 140 ms
54,024 KB
testcase_04 AC 142 ms
53,864 KB
testcase_05 AC 164 ms
54,036 KB
testcase_06 AC 165 ms
54,140 KB
testcase_07 AC 185 ms
53,760 KB
testcase_08 AC 193 ms
54,340 KB
testcase_09 AC 226 ms
54,500 KB
testcase_10 AC 238 ms
54,932 KB
testcase_11 AC 242 ms
56,940 KB
testcase_12 AC 240 ms
56,816 KB
testcase_13 AC 276 ms
54,980 KB
testcase_14 AC 321 ms
58,860 KB
testcase_15 AC 337 ms
59,192 KB
testcase_16 AC 353 ms
58,724 KB
testcase_17 AC 384 ms
59,232 KB
testcase_18 AC 433 ms
59,276 KB
testcase_19 AC 425 ms
59,348 KB
testcase_20 AC 459 ms
59,344 KB
testcase_21 AC 443 ms
59,952 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Arrays;
import java.util.Scanner;
import java.util.stream.IntStream;

public class Main {
    public static void main(String[] args) {
        Scanner stdin = new Scanner(System.in);
        int n = stdin.nextInt();
        int m = stdin.nextInt();
        int[] a = new int[m];
        int[] b = new int[m];
        for (int i = 0; i < m; i++) {
            a[i] = stdin.nextInt() - 1;
            b[i] = stdin.nextInt() - 1;
        }
        
        UnionFind uf = new UnionFind(n);
        for (int i = 0; i < m; i++) {
            uf.union(a[i], b[i]);
        }
        
        for (int i = 0; i < n; i++) {
            System.out.println(uf.find(i) + 1);
        }
    }
    
    private static class UnionFind {
        private int[] parents;
        private int[] sizes;
        
        public UnionFind(int n) {
            parents = IntStream.range(0, n).toArray();
            sizes = new int[n];
            Arrays.fill(sizes, 1);
        }
        
        public int find(int x) {
            if (parents[x] == x) {
                return x;
            } else {
                parents[x] = find(parents[x]);
                return parents[x];
            }
        }
        
        public void union(int x, int y) {
            x = find(x);
            y = find(y);
            if (x == y) return ;
            
            
            int w, l;
            if (sizes[x] < sizes[y]) {
                w = y;
                l = x;
            } else if (sizes[x] == sizes[y]) {
                w = Math.min(x, y);
                l = Math.max(x, y);
            } else {
                w = x;
                l = y;
            }
            
            sizes[w] += sizes[l];
            parents[l] = w;
        }
    }
}
0