結果

問題 No.1640 簡単な色塗り
ユーザー qibqib
提出日時 2023-03-10 02:38:59
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 1,219 bytes
コンパイル時間 182 ms
コンパイル使用メモリ 82,388 KB
実行使用メモリ 99,404 KB
最終ジャッジ日時 2024-09-18 03:12:41
合計ジャッジ時間 16,363 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
54,348 KB
testcase_01 AC 43 ms
54,652 KB
testcase_02 AC 42 ms
54,168 KB
testcase_03 AC 42 ms
54,012 KB
testcase_04 AC 146 ms
87,212 KB
testcase_05 AC 174 ms
98,904 KB
testcase_06 AC 40 ms
54,312 KB
testcase_07 AC 37 ms
55,244 KB
testcase_08 AC 37 ms
55,788 KB
testcase_09 AC 37 ms
54,960 KB
testcase_10 AC 202 ms
90,696 KB
testcase_11 WA -
testcase_12 WA -
testcase_13 AC 242 ms
97,324 KB
testcase_14 WA -
testcase_15 WA -
testcase_16 AC 146 ms
85,940 KB
testcase_17 AC 215 ms
93,348 KB
testcase_18 WA -
testcase_19 AC 160 ms
86,532 KB
testcase_20 AC 188 ms
90,504 KB
testcase_21 AC 170 ms
87,496 KB
testcase_22 AC 99 ms
77,864 KB
testcase_23 AC 202 ms
91,268 KB
testcase_24 WA -
testcase_25 WA -
testcase_26 AC 215 ms
91,856 KB
testcase_27 AC 143 ms
82,912 KB
testcase_28 AC 250 ms
96,780 KB
testcase_29 AC 199 ms
92,076 KB
testcase_30 AC 83 ms
77,960 KB
testcase_31 AC 182 ms
94,012 KB
testcase_32 AC 155 ms
90,564 KB
testcase_33 AC 140 ms
87,096 KB
testcase_34 AC 150 ms
89,052 KB
testcase_35 AC 136 ms
85,192 KB
testcase_36 AC 84 ms
78,000 KB
testcase_37 AC 87 ms
78,596 KB
testcase_38 AC 172 ms
92,288 KB
testcase_39 AC 110 ms
83,204 KB
testcase_40 AC 107 ms
83,124 KB
testcase_41 AC 179 ms
89,124 KB
testcase_42 AC 113 ms
83,848 KB
testcase_43 AC 119 ms
83,504 KB
testcase_44 AC 123 ms
83,976 KB
testcase_45 AC 117 ms
82,552 KB
testcase_46 AC 93 ms
78,576 KB
testcase_47 AC 82 ms
77,888 KB
testcase_48 AC 182 ms
93,080 KB
testcase_49 AC 87 ms
77,036 KB
testcase_50 AC 39 ms
55,596 KB
testcase_51 AC 38 ms
54,484 KB
testcase_52 AC 272 ms
99,404 KB
testcase_53 AC 277 ms
98,988 KB
07_evil_01.txt AC 537 ms
123,544 KB
07_evil_02.txt AC 883 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 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