結果

問題 No.556 仁義なきサルたち
ユーザー 37zigen37zigen
提出日時 2017-08-12 01:11:42
言語 Java21
(openjdk 21)
結果
AC  
実行時間 445 ms / 2,000 ms
コード長 1,187 bytes
コンパイル時間 2,856 ms
コンパイル使用メモリ 77,132 KB
実行使用メモリ 48,280 KB
最終ジャッジ日時 2024-10-12 22:46:53
合計ジャッジ時間 9,392 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 111 ms
39,884 KB
testcase_01 AC 132 ms
41,320 KB
testcase_02 AC 129 ms
41,088 KB
testcase_03 AC 132 ms
41,232 KB
testcase_04 AC 118 ms
40,056 KB
testcase_05 AC 158 ms
41,260 KB
testcase_06 AC 149 ms
41,848 KB
testcase_07 AC 164 ms
41,484 KB
testcase_08 AC 183 ms
41,852 KB
testcase_09 AC 218 ms
42,360 KB
testcase_10 AC 231 ms
42,988 KB
testcase_11 AC 230 ms
43,580 KB
testcase_12 AC 231 ms
43,784 KB
testcase_13 AC 255 ms
43,176 KB
testcase_14 AC 299 ms
46,804 KB
testcase_15 AC 302 ms
47,440 KB
testcase_16 AC 333 ms
47,992 KB
testcase_17 AC 386 ms
47,792 KB
testcase_18 AC 419 ms
48,104 KB
testcase_19 AC 420 ms
46,484 KB
testcase_20 AC 440 ms
47,800 KB
testcase_21 AC 445 ms
48,280 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Arrays;
import java.util.Scanner;

public class Main {
	final long MODULO = 1_000_000_000 + 7;

	void run() {
		Scanner sc = new Scanner(System.in);
		int n = sc.nextInt();
		int m = sc.nextInt();
		DJSet ds = new DJSet(n);
		for (int i = 0; i < m; ++i) {
			int a = sc.nextInt();
			int b = sc.nextInt();
			--a;
			--b;
			ds.setUnion(a, b);
		}
		for (int i = 0; i < n; ++i) {
			System.out.println(ds.root(i) + 1);
		}
	}

	class DJSet {
		int n;
		int[] upper;

		public DJSet(int n_) {
			n = n_;
			upper = new int[n];
			Arrays.fill(upper, -1);
		}

		boolean equiv(int x, int y) {
			return root(x) == root(y);
		}

		int root(int x) {
			return upper[x] < 0 ? x : (upper[x] = root(upper[x]));
		}

		void setUnion(int x, int y) {
			x = root(x);
			y = root(y);
			if (x == y) {
				return;
			}
			if (upper[x] < upper[y]) {
				int d = x;
				x = y;
				y = d;
			}
			if (upper[x] == upper[y] && x < y) {
				int d = x;
				x = y;
				y = d;
			}
			upper[y] += upper[x];
			upper[x] = y;
		}
	}

	static void tr(Object... objects) {
		System.out.println(Arrays.deepToString(objects));
	}

	public static void main(String[] args) {
		new Main().run();
	}
}
0