結果

問題 No.1640 簡単な色塗り
ユーザー qibqib
提出日時 2023-03-10 02:35:44
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 1,225 bytes
コンパイル時間 249 ms
コンパイル使用メモリ 81,792 KB
実行使用メモリ 99,328 KB
最終ジャッジ日時 2024-09-18 03:12:21
合計ジャッジ時間 18,837 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
53,760 KB
testcase_01 AC 40 ms
53,888 KB
testcase_02 AC 41 ms
53,888 KB
testcase_03 AC 41 ms
53,376 KB
testcase_04 AC 150 ms
86,912 KB
testcase_05 AC 192 ms
98,688 KB
testcase_06 AC 42 ms
54,272 KB
testcase_07 AC 40 ms
53,888 KB
testcase_08 AC 43 ms
54,016 KB
testcase_09 AC 42 ms
53,504 KB
testcase_10 AC 236 ms
90,112 KB
testcase_11 WA -
testcase_12 WA -
testcase_13 AC 321 ms
97,536 KB
testcase_14 WA -
testcase_15 WA -
testcase_16 AC 183 ms
85,632 KB
testcase_17 AC 262 ms
93,236 KB
testcase_18 WA -
testcase_19 AC 192 ms
86,760 KB
testcase_20 AC 231 ms
90,368 KB
testcase_21 AC 208 ms
87,296 KB
testcase_22 AC 120 ms
77,952 KB
testcase_23 AC 237 ms
91,392 KB
testcase_24 WA -
testcase_25 WA -
testcase_26 AC 248 ms
91,904 KB
testcase_27 AC 160 ms
83,200 KB
testcase_28 AC 304 ms
96,820 KB
testcase_29 AC 247 ms
91,776 KB
testcase_30 AC 96 ms
77,824 KB
testcase_31 AC 223 ms
93,568 KB
testcase_32 AC 197 ms
89,856 KB
testcase_33 AC 160 ms
86,912 KB
testcase_34 AC 183 ms
88,960 KB
testcase_35 AC 157 ms
87,460 KB
testcase_36 AC 94 ms
78,336 KB
testcase_37 AC 109 ms
78,592 KB
testcase_38 AC 209 ms
92,544 KB
testcase_39 AC 127 ms
83,072 KB
testcase_40 AC 128 ms
83,148 KB
testcase_41 AC 181 ms
89,088 KB
testcase_42 AC 169 ms
83,712 KB
testcase_43 AC 149 ms
84,224 KB
testcase_44 AC 138 ms
83,968 KB
testcase_45 AC 124 ms
82,688 KB
testcase_46 AC 97 ms
78,336 KB
testcase_47 AC 97 ms
78,080 KB
testcase_48 AC 212 ms
92,416 KB
testcase_49 AC 87 ms
77,652 KB
testcase_50 AC 41 ms
53,888 KB
testcase_51 AC 41 ms
54,016 KB
testcase_52 AC 317 ms
99,200 KB
testcase_53 AC 330 ms
99,328 KB
07_evil_01.txt AC 668 ms
123,136 KB
07_evil_02.txt AC 999 ms
146,944 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import deque

n = int(input())

g = [[] for _ in range(n)]
deg = [0 for _ in range(n)]
used = [False for _ in range(n)]
ans = [None for _ in range(n)]
for e in range(n):
  a, b = map(int, input().split())
  a -= 1
  b -= 1
  if a == b:
    used[a] = True
    ans[e] = a + 1
  else:
    g[a].append((b, e))
    g[b].append((a, e))
    deg[a] += 1
    deg[b] += 1

dq = deque()
for u in range(n):
  if used[u]:
    continue
  if len(g[u]) == 0:
    print("No")
    exit()
  elif len(g[u]) == 1:
    used[u] = True
    dq.append(u)

while len(dq) > 0:
  cur = dq.popleft()
  for nxt, e in g[cur]:
    if not ans[e] is None:
      continue
    deg[nxt] -= 1
    ans[e] = cur + 1
    if deg[nxt] == 0:
      print("No")
      exit()
    elif deg[nxt] == 1:
      used[nxt] = True
      dq.append(nxt)

for src in range(n):
  if used[src]:
    continue
  dq.append(src)
  while len(dq) > 0:
    cur = dq.popleft()
    while len(g[cur]) > 0:
      nxt, e = g[cur].pop()
      if not ans[e] is None:
        continue
      ans[e] = cur + 1
      if used[nxt]:
        continue
      used[nxt] = True
      dq.append(nxt)
      break

if ans.count(None) > 0:
  print("No")
else:
  print("Yes")
  print(*ans, sep="\n")
0