結果

問題 No.556 仁義なきサルたち
ユーザー dragonlaunchdragonlaunch
提出日時 2017-11-12 04:38:33
言語 Python3
(3.13.1 + numpy 2.2.1 + scipy 1.14.1)
結果
TLE  
実行時間 -
コード長 936 bytes
コンパイル時間 317 ms
コンパイル使用メモリ 12,800 KB
実行使用メモリ 24,832 KB
最終ジャッジ日時 2024-11-24 20:44:47
合計ジャッジ時間 27,278 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 30 ms
16,256 KB
testcase_01 AC 29 ms
22,784 KB
testcase_02 AC 30 ms
16,128 KB
testcase_03 AC 30 ms
23,040 KB
testcase_04 AC 31 ms
17,828 KB
testcase_05 AC 34 ms
16,256 KB
testcase_06 AC 36 ms
16,256 KB
testcase_07 AC 38 ms
23,552 KB
testcase_08 AC 40 ms
16,256 KB
testcase_09 AC 115 ms
24,448 KB
testcase_10 AC 178 ms
16,384 KB
testcase_11 AC 216 ms
24,576 KB
testcase_12 AC 217 ms
24,832 KB
testcase_13 AC 881 ms
16,896 KB
testcase_14 TLE -
testcase_15 TLE -
testcase_16 TLE -
testcase_17 TLE -
testcase_18 TLE -
testcase_19 TLE -
testcase_20 TLE -
testcase_21 TLE -
権限があれば一括ダウンロードができます

ソースコード

diff #

import time
N,M = [int(i) for i in input().split()]
battle = []
for i in range (M):
    battle.append(list(int(i) for i in input().split()))
monkey = list(range(1,N+1))
group = []
for i in range(N):
    group.append([(monkey[i])])
#print(group,battle)
def bat(a,b):
    if a == b:
        return a
    elif len(a) == len(b):
        if a[0] < b[0]:
            return a + b
        if b[0] < a[0]:
            return b + a
    elif len(a) > len(b):
        return a + b
    elif len(b) > len(a):
        return b + a

for i in range(M):
    for j in range(len(group)):
        if battle[i][0] in group[j]:
            x = group[j]
        if battle[i][1] in group[j]:
            y = group[j]
    if x != y:
        group.remove(x)
        group.remove(y)
    else:
        group.remove(x)
    group.append(bat(x,y))
for i in group:
    for j in i:
        monkey[j-1] = group[group.index(i)][0]
for i in range(N):
    print(monkey[i])
0