結果

問題 No.1640 簡単な色塗り
ユーザー qibqib
提出日時 2023-03-10 02:22:23
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 987 bytes
コンパイル時間 215 ms
コンパイル使用メモリ 82,552 KB
実行使用メモリ 99,308 KB
最終ジャッジ日時 2024-09-18 03:11:40
合計ジャッジ時間 17,033 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
54,592 KB
testcase_01 AC 39 ms
54,316 KB
testcase_02 AC 38 ms
55,104 KB
testcase_03 AC 38 ms
54,204 KB
testcase_04 AC 171 ms
98,656 KB
testcase_05 WA -
testcase_06 AC 39 ms
54,316 KB
testcase_07 AC 37 ms
54,344 KB
testcase_08 WA -
testcase_09 AC 37 ms
54,264 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 82 ms
78,204 KB
testcase_31 AC 179 ms
93,872 KB
testcase_32 AC 167 ms
90,452 KB
testcase_33 AC 136 ms
86,980 KB
testcase_34 AC 146 ms
89,036 KB
testcase_35 AC 125 ms
84,844 KB
testcase_36 AC 82 ms
78,188 KB
testcase_37 AC 93 ms
78,864 KB
testcase_38 AC 177 ms
92,252 KB
testcase_39 AC 127 ms
83,728 KB
testcase_40 AC 125 ms
83,140 KB
testcase_41 AC 166 ms
89,024 KB
testcase_42 AC 120 ms
83,596 KB
testcase_43 AC 122 ms
84,320 KB
testcase_44 AC 117 ms
84,224 KB
testcase_45 AC 109 ms
82,708 KB
testcase_46 AC 87 ms
78,044 KB
testcase_47 AC 82 ms
77,668 KB
testcase_48 AC 180 ms
93,068 KB
testcase_49 AC 81 ms
77,704 KB
testcase_50 WA -
testcase_51 WA -
testcase_52 AC 253 ms
98,572 KB
testcase_53 AC 259 ms
99,176 KB
07_evil_01.txt WA -
07_evil_02.txt WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import deque

n = int(input())

g = [[] for _ in range(n)]
deg = [0 for _ in range(n)]
for i in range(n):
  a, b = map(int, input().split())
  a -= 1
  b -= 1
  g[a].append((b, i))
  g[b].append((a, i))
  deg[a] += 1
  deg[b] += 1

used = [False for _ in range(n)]
ans = [None for _ in range(n)]
dq = deque()
for u in range(n):
  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] == 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()
    for nxt, e in g[cur]:
      if not ans[e] is None:
        continue
      if used[nxt]:
        continue
      ans[e] = nxt + 1
      used[nxt] = True
      dq.append(nxt)

print("Yes")
print(*ans, sep="\n")
0