結果

問題 No.556 仁義なきサルたち
ユーザー いたいた
提出日時 2025-01-08 01:37:36
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 138 ms / 2,000 ms
コード長 402 bytes
コンパイル時間 154 ms
コンパイル使用メモリ 82,712 KB
実行使用メモリ 77,480 KB
最終ジャッジ日時 2025-01-08 01:37:45
合計ジャッジ時間 2,413 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
52,500 KB
testcase_01 AC 34 ms
52,684 KB
testcase_02 AC 46 ms
53,248 KB
testcase_03 AC 35 ms
52,680 KB
testcase_04 AC 34 ms
52,620 KB
testcase_05 AC 35 ms
53,440 KB
testcase_06 AC 36 ms
53,544 KB
testcase_07 AC 40 ms
53,440 KB
testcase_08 AC 38 ms
54,716 KB
testcase_09 AC 47 ms
61,564 KB
testcase_10 AC 53 ms
64,172 KB
testcase_11 AC 60 ms
67,656 KB
testcase_12 AC 61 ms
69,396 KB
testcase_13 AC 55 ms
66,712 KB
testcase_14 AC 95 ms
76,944 KB
testcase_15 AC 118 ms
77,144 KB
testcase_16 AC 96 ms
76,328 KB
testcase_17 AC 119 ms
77,480 KB
testcase_18 AC 138 ms
77,208 KB
testcase_19 AC 100 ms
76,272 KB
testcase_20 AC 84 ms
76,452 KB
testcase_21 AC 83 ms
76,376 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

  if ne[N]<0:
    return N
  else:
    ne[N]=root(ne[N])
    return ne[N]
def merge(x,y):
  x,y=root(x),root(y)
  if x==y:
    return
  if x>y:
    x,y=y,x
  if ne[x]>ne[y]:
    x,y=y,x
  ne[x]+=ne[y]
  ne[y]=x
for _ in range(M):
  a,b=map(lambda x:int(x)-1,input().split())
  a,b=max(a,b),min(a,b)
  merge(b,a)
for i in range(N):
  print(root(i)+1)
0