結果

問題 No.556 仁義なきサルたち
ユーザー Mr.FukuMr.Fuku
提出日時 2018-07-19 22:41:59
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 89 ms / 2,000 ms
コード長 1,106 bytes
コンパイル時間 96 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 12,288 KB
最終ジャッジ日時 2024-06-07 13:11:28
合計ジャッジ時間 2,194 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 31 ms
10,624 KB
testcase_01 AC 33 ms
10,624 KB
testcase_02 AC 30 ms
10,624 KB
testcase_03 AC 31 ms
10,752 KB
testcase_04 AC 31 ms
10,624 KB
testcase_05 AC 30 ms
10,752 KB
testcase_06 AC 30 ms
10,624 KB
testcase_07 AC 31 ms
10,624 KB
testcase_08 AC 31 ms
10,624 KB
testcase_09 AC 33 ms
11,008 KB
testcase_10 AC 34 ms
10,880 KB
testcase_11 AC 35 ms
10,880 KB
testcase_12 AC 37 ms
10,880 KB
testcase_13 AC 38 ms
11,392 KB
testcase_14 AC 50 ms
11,520 KB
testcase_15 AC 56 ms
11,520 KB
testcase_16 AC 56 ms
12,160 KB
testcase_17 AC 71 ms
12,032 KB
testcase_18 AC 89 ms
12,160 KB
testcase_19 AC 87 ms
12,288 KB
testcase_20 AC 83 ms
12,160 KB
testcase_21 AC 82 ms
12,032 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N,M = map(int,input().split())
mon_list = [[i] for i in range(N+1)]    #N番目のリストにはN番目の猿の所属するチームの情報が書かれたリスト(先頭に所属先ボス、N番目の猿がボスであれば以下に子分)を格納。なお0番目のリストは不使用

for i in range(M):
    mon1,mon2 = map(int,input().split())
    boss1,boss2 = mon_list[mon1][0],mon_list[mon2][0]
    if boss1==boss2:    #同じチームであれば変化なし
        continue
    winner = 0
    loser = 0
    if len(mon_list[boss1])>len(mon_list[boss2]):
        winner,loser = boss1,boss2
    elif len(mon_list[boss2])>len(mon_list[boss1]):
        winner,loser = boss2,boss1
    else:
        winner,loser = min(boss1,boss2),max(boss1,boss2)
    mon_list[winner] += mon_list[loser] #勝ったチームのボスのリストに負けたチームの猿たちを加える
    for i in mon_list[loser]:           #負けたチームの猿たちのリストを勝ったチームのボスに書き換える
        mon_list[i] = [winner]
    
for i in range(1,N+1):
    print(mon_list[i][0])
0