結果

問題 No.1640 簡単な色塗り
ユーザー raven7959raven7959
提出日時 2021-08-18 10:35:28
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 1,508 bytes
コンパイル時間 243 ms
コンパイル使用メモリ 81,908 KB
実行使用メモリ 84,228 KB
最終ジャッジ日時 2024-06-29 17:07:54
合計ジャッジ時間 18,058 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 33 ms
53,036 KB
testcase_01 AC 33 ms
52,956 KB
testcase_02 AC 32 ms
53,100 KB
testcase_03 AC 33 ms
52,696 KB
testcase_04 AC 116 ms
81,316 KB
testcase_05 AC 123 ms
81,544 KB
testcase_06 WA -
testcase_07 WA -
testcase_08 WA -
testcase_09 AC 32 ms
52,896 KB
testcase_10 WA -
testcase_11 WA -
testcase_12 WA -
testcase_13 WA -
testcase_14 WA -
testcase_15 WA -
testcase_16 WA -
testcase_17 WA -
testcase_18 WA -
testcase_19 WA -
testcase_20 WA -
testcase_21 WA -
testcase_22 WA -
testcase_23 WA -
testcase_24 WA -
testcase_25 WA -
testcase_26 WA -
testcase_27 WA -
testcase_28 WA -
testcase_29 WA -
testcase_30 AC 148 ms
78,292 KB
testcase_31 AC 260 ms
81,972 KB
testcase_32 AC 238 ms
81,828 KB
testcase_33 AC 202 ms
80,300 KB
testcase_34 AC 218 ms
80,816 KB
testcase_35 AC 201 ms
80,332 KB
testcase_36 AC 133 ms
78,296 KB
testcase_37 AC 144 ms
78,308 KB
testcase_38 AC 239 ms
82,268 KB
testcase_39 AC 173 ms
79,176 KB
testcase_40 AC 171 ms
79,432 KB
testcase_41 AC 213 ms
80,652 KB
testcase_42 AC 181 ms
79,560 KB
testcase_43 AC 182 ms
79,112 KB
testcase_44 AC 182 ms
79,828 KB
testcase_45 AC 166 ms
78,892 KB
testcase_46 AC 136 ms
77,592 KB
testcase_47 AC 126 ms
77,120 KB
testcase_48 AC 250 ms
81,744 KB
testcase_49 AC 103 ms
77,344 KB
testcase_50 AC 34 ms
53,352 KB
testcase_51 AC 32 ms
52,520 KB
testcase_52 WA -
testcase_53 WA -
07_evil_01.txt WA -
07_evil_02.txt WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

N=int(input())
A=[0]*N
B=[0]*N
for i in range(N):
  A[i],B[i]=map(lambda x:int(x)-1,input().split())
par=[i for i in range(N)] #par[x]はxの親の番号,初期状態では全ての頂点が根なのでpar[x]=x
size=[1]*N
rank=[0]*(N+1) #ランクを用意
def root(x): #xが属する木の根を求める
  if par[x]==x: #xが根なら終わり
    return x
  else:
    par[x]=root(par[x]) #でなければ親の根につける
    return par[x] #再帰の終わりにはたどった頂点全てが根についてる
def unite(x,y):
  rx,ry=root(x),root(y)
  if rx==ry: #はなから同じグループに属してるなら何もしない
    return
  else:
    if rank[x]<rank[y]: #xの属する木の方が低いなら
      par[rx]=ry #xの根をyの根につける
      size[ry]+=size[rx]-1
    else:
      par[ry]=rx #でなければyの根をxの根につけた上で
      size[rx]+=size[ry]-1
      if rank[x]==rank[y]:
        rank[x]+=1 #高さが同じならxの属する木の高さが1増える
def same(x,y): #x,yが同じグループに属するかどうかをTrue/Falseで返す
  rx,ry=root(x),root(y)
  return rx==ry
def get_size(x):
  return size[root(x)]
for i in range(N):
  if not same(A[i],B[i]):
    unite(A[i],B[i])
  else:
    size[root(A[i])]-=1
flg=True
for i in range(N):
  if size[i]<0:
    flg=False
if not flg:
  print("No")
  exit()
print("Yes")
seen=[0]*N
for i in range(N):
  if not seen[A[i]]:
    print(A[i]+1)
    seen[A[i]]=1
  else:
    print(B[i]+1)
    seen[B[i]]=1
0