結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
52,892 KB
testcase_01 AC 34 ms
52,952 KB
testcase_02 AC 34 ms
52,536 KB
testcase_03 AC 34 ms
52,692 KB
testcase_04 AC 34 ms
53,292 KB
testcase_05 AC 34 ms
53,140 KB
testcase_06 AC 35 ms
53,116 KB
testcase_07 AC 37 ms
54,252 KB
testcase_08 AC 37 ms
53,788 KB
testcase_09 AC 47 ms
61,904 KB
testcase_10 AC 52 ms
64,840 KB
testcase_11 AC 59 ms
68,604 KB
testcase_12 AC 59 ms
68,212 KB
testcase_13 AC 54 ms
67,340 KB
testcase_14 AC 98 ms
76,572 KB
testcase_15 AC 117 ms
77,524 KB
testcase_16 AC 94 ms
76,472 KB
testcase_17 AC 115 ms
77,352 KB
testcase_18 AC 137 ms
76,980 KB
testcase_19 AC 83 ms
76,524 KB
testcase_20 AC 82 ms
76,504 KB
testcase_21 AC 86 ms
76,336 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