結果

問題 No.556 仁義なきサルたち
ユーザー gyu-dongyu-don
提出日時 2017-08-19 07:11:12
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
TLE  
実行時間 -
コード長 658 bytes
コンパイル時間 91 ms
コンパイル使用メモリ 12,800 KB
実行使用メモリ 18,084 KB
最終ジャッジ日時 2024-10-14 15:30:27
合計ジャッジ時間 9,221 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 25 ms
15,872 KB
testcase_01 AC 26 ms
10,752 KB
testcase_02 AC 26 ms
10,624 KB
testcase_03 AC 28 ms
10,624 KB
testcase_04 AC 28 ms
10,752 KB
testcase_05 AC 29 ms
10,752 KB
testcase_06 AC 31 ms
10,752 KB
testcase_07 AC 29 ms
10,752 KB
testcase_08 AC 37 ms
10,752 KB
testcase_09 AC 53 ms
10,880 KB
testcase_10 AC 97 ms
10,880 KB
testcase_11 AC 120 ms
10,752 KB
testcase_12 AC 120 ms
10,752 KB
testcase_13 AC 198 ms
11,136 KB
testcase_14 AC 1,488 ms
11,008 KB
testcase_15 TLE -
testcase_16 TLE -
testcase_17 TLE -
testcase_18 -- -
testcase_19 -- -
testcase_20 -- -
testcase_21 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

n, m = [int(x) for x in input().strip().split()]
boss = [x for x in range(n+1)]
piki = [1 for _ in range(n+1)]

for _ in range(m):
    a, b = [int(x) for x in input().strip().split()]
    if boss[a] == boss[b]:
        pass
    else:
        ta = boss[a]
        tb = boss[b]
        if piki[ta] > piki[tb] or (piki[ta] == piki[tb] and ta < tb):
            piki[ta] += piki[tb]
            for i in range(n+1):
                if boss[i] == tb:
                    boss[i] = ta
        else:
            piki[tb] += piki[ta]
            for i in range(n+1):
                if boss[i] == ta:
                    boss[i] = tb
for x in boss[1:]:
    print(x)
0