結果

問題 No.1640 簡単な色塗り
ユーザー qibqib
提出日時 2023-03-10 02:45:36
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 283 ms / 2,000 ms
コード長 1,272 bytes
コンパイル時間 189 ms
コンパイル使用メモリ 82,048 KB
実行使用メモリ 99,328 KB
最終ジャッジ日時 2024-09-18 03:13:03
合計ジャッジ時間 17,145 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
53,248 KB
testcase_01 AC 38 ms
54,272 KB
testcase_02 AC 40 ms
54,272 KB
testcase_03 AC 39 ms
54,016 KB
testcase_04 AC 136 ms
86,656 KB
testcase_05 AC 175 ms
98,688 KB
testcase_06 AC 40 ms
53,504 KB
testcase_07 AC 41 ms
54,016 KB
testcase_08 AC 42 ms
53,888 KB
testcase_09 AC 44 ms
53,888 KB
testcase_10 AC 216 ms
90,752 KB
testcase_11 AC 194 ms
87,296 KB
testcase_12 AC 175 ms
86,656 KB
testcase_13 AC 270 ms
97,024 KB
testcase_14 AC 265 ms
97,024 KB
testcase_15 AC 153 ms
84,044 KB
testcase_16 AC 164 ms
86,016 KB
testcase_17 AC 233 ms
92,672 KB
testcase_18 AC 120 ms
78,208 KB
testcase_19 AC 184 ms
86,272 KB
testcase_20 AC 208 ms
89,856 KB
testcase_21 AC 184 ms
87,296 KB
testcase_22 AC 121 ms
77,696 KB
testcase_23 AC 225 ms
91,136 KB
testcase_24 AC 133 ms
81,024 KB
testcase_25 AC 188 ms
86,528 KB
testcase_26 AC 253 ms
91,520 KB
testcase_27 AC 155 ms
83,328 KB
testcase_28 AC 263 ms
96,768 KB
testcase_29 AC 230 ms
91,776 KB
testcase_30 AC 96 ms
78,080 KB
testcase_31 AC 195 ms
93,696 KB
testcase_32 AC 182 ms
90,112 KB
testcase_33 AC 147 ms
87,296 KB
testcase_34 AC 159 ms
88,832 KB
testcase_35 AC 144 ms
87,040 KB
testcase_36 AC 109 ms
78,208 KB
testcase_37 AC 100 ms
78,208 KB
testcase_38 AC 189 ms
92,288 KB
testcase_39 AC 122 ms
82,816 KB
testcase_40 AC 123 ms
83,200 KB
testcase_41 AC 172 ms
89,344 KB
testcase_42 AC 135 ms
83,456 KB
testcase_43 AC 130 ms
83,584 KB
testcase_44 AC 138 ms
83,712 KB
testcase_45 AC 122 ms
82,560 KB
testcase_46 AC 98 ms
78,592 KB
testcase_47 AC 99 ms
77,568 KB
testcase_48 AC 196 ms
92,416 KB
testcase_49 AC 91 ms
77,312 KB
testcase_50 AC 40 ms
53,760 KB
testcase_51 AC 40 ms
53,888 KB
testcase_52 AC 283 ms
99,328 KB
testcase_53 AC 273 ms
98,816 KB
07_evil_01.txt AC 563 ms
123,520 KB
07_evil_02.txt AC 891 ms
147,072 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 deg[u] == 0:
    print("No")
    exit()
  elif deg[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 used[nxt]:
      continue

    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)
  used[src] = True
  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