結果

問題 No.556 仁義なきサルたち
ユーザー tktk_snsntktk_snsn
提出日時 2021-01-17 23:12:27
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 134 ms / 2,000 ms
コード長 700 bytes
コンパイル時間 181 ms
コンパイル使用メモリ 82,048 KB
実行使用メモリ 77,284 KB
最終ジャッジ日時 2024-11-30 05:18:38
合計ジャッジ時間 2,797 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 42 ms
51,968 KB
testcase_01 AC 41 ms
52,608 KB
testcase_02 AC 44 ms
51,456 KB
testcase_03 AC 43 ms
52,092 KB
testcase_04 AC 41 ms
51,712 KB
testcase_05 AC 41 ms
52,096 KB
testcase_06 AC 42 ms
53,120 KB
testcase_07 AC 42 ms
52,352 KB
testcase_08 AC 42 ms
52,572 KB
testcase_09 AC 48 ms
59,648 KB
testcase_10 AC 53 ms
61,660 KB
testcase_11 AC 52 ms
62,080 KB
testcase_12 AC 56 ms
61,952 KB
testcase_13 AC 59 ms
65,280 KB
testcase_14 AC 96 ms
75,648 KB
testcase_15 AC 109 ms
76,380 KB
testcase_16 AC 86 ms
76,128 KB
testcase_17 AC 108 ms
76,032 KB
testcase_18 AC 134 ms
77,284 KB
testcase_19 AC 63 ms
69,632 KB
testcase_20 AC 66 ms
71,168 KB
testcase_21 AC 67 ms
71,552 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = sys.stdin.buffer.readline
sys.setrecursionlimit(10 ** 7)

N, M = map(int, input().split())
root = [-1] * N


def find(x):
    if root[x] < 0:
        return x
    root[x] = find(root[x])
    return root[x]


def same(x, y):
    return find(x) == find(y)


def merge(x, y):
    x = find(x)
    y = find(y)
    if x == y:
        return
    if root[x] == root[y]:
        x, y = min(x, y), max(x, y)
        root[x] += root[y]
        root[y] = x
        return
    if -root[x] < -root[y]:
        x, y = y, x
    root[x] += root[y]
    root[y] = x
    return


for _ in range(M):
    a, b = map(int, input().split())
    merge(a - 1, b - 1)
for i in range(N):
    print(find(i) + 1)
0