結果

問題 No.556 仁義なきサルたち
ユーザー htensaihtensai
提出日時 2019-11-14 23:22:32
言語 Java21
(openjdk 21)
結果
AC  
実行時間 345 ms / 2,000 ms
コード長 1,402 bytes
コンパイル時間 2,199 ms
コンパイル使用メモリ 77,380 KB
実行使用メモリ 59,112 KB
最終ジャッジ日時 2024-09-22 05:10:35
合計ジャッジ時間 7,813 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 133 ms
53,864 KB
testcase_01 AC 120 ms
53,100 KB
testcase_02 AC 133 ms
53,860 KB
testcase_03 AC 131 ms
54,040 KB
testcase_04 AC 136 ms
53,892 KB
testcase_05 AC 140 ms
54,088 KB
testcase_06 AC 143 ms
54,268 KB
testcase_07 AC 161 ms
54,408 KB
testcase_08 AC 160 ms
54,304 KB
testcase_09 AC 179 ms
54,440 KB
testcase_10 AC 189 ms
54,384 KB
testcase_11 AC 198 ms
56,996 KB
testcase_12 AC 203 ms
56,488 KB
testcase_13 AC 188 ms
54,568 KB
testcase_14 AC 227 ms
57,784 KB
testcase_15 AC 256 ms
58,184 KB
testcase_16 AC 235 ms
57,828 KB
testcase_17 AC 277 ms
58,492 KB
testcase_18 AC 315 ms
58,868 KB
testcase_19 AC 309 ms
58,800 KB
testcase_20 AC 332 ms
58,748 KB
testcase_21 AC 345 ms
59,112 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Main {
	public static void main (String[] args) throws Exception {
		Scanner sc = new Scanner(System.in);
		int n = sc.nextInt();
		int m = sc.nextInt();
		UnionFindTree uft = new UnionFindTree(n);
		for (int i = 0; i < m; i++) {
		    int a = sc.nextInt() - 1;
		    int b = sc.nextInt() - 1;
		    uft.unite(a, b);
		}
		StringBuilder sb = new StringBuilder();
		for (int i = 0; i < n; i++) {
		    sb.append(uft.find(i) + 1).append("\n");
		}
		System.out.print(sb);
	}
	
	static class UnionFindTree {
	    int[] parents;
	    int[] counts;
	    
	    public UnionFindTree(int size) {
	        parents = new int[size];
	        counts = new int[size];
	        for (int i = 0; i < size; i++) {
	            parents[i] = i;
	            counts[i] = 1;
	        }
	    }
	    
	    public int find(int x) {
	        if (parents[x] == x) {
	            return x;
	        } else {
	            return parents[x] = find(parents[x]);
	        }
	    }
	    
	    public void unite(int x, int y) {
	        int xx = find(x);
	        int yy = find(y);
	        if (xx == yy) {
	            return;
	        }
	        if (counts[xx] > counts[yy] || (counts[xx] == counts[yy] && xx < yy)) {
	            parents[yy] = xx;
	            counts[xx] += counts[yy];
	        } else {
	            parents[xx] = yy;
	            counts[yy] += counts[xx];
	        }
	    }
	}
}
0