結果

問題 No.1640 簡単な色塗り
ユーザー vwxyzvwxyz
提出日時 2023-05-17 01:43:46
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 261 ms / 2,000 ms
コード長 978 bytes
コンパイル時間 276 ms
コンパイル使用メモリ 82,560 KB
実行使用メモリ 98,452 KB
最終ジャッジ日時 2024-12-14 22:51:48
合計ジャッジ時間 19,605 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
51,968 KB
testcase_01 AC 39 ms
52,224 KB
testcase_02 AC 38 ms
52,480 KB
testcase_03 AC 39 ms
52,352 KB
testcase_04 AC 135 ms
97,964 KB
testcase_05 AC 136 ms
97,748 KB
testcase_06 AC 39 ms
52,212 KB
testcase_07 AC 38 ms
52,352 KB
testcase_08 AC 38 ms
51,968 KB
testcase_09 AC 39 ms
52,352 KB
testcase_10 AC 184 ms
90,572 KB
testcase_11 AC 165 ms
86,656 KB
testcase_12 AC 152 ms
85,700 KB
testcase_13 AC 258 ms
96,968 KB
testcase_14 AC 259 ms
97,120 KB
testcase_15 AC 135 ms
83,840 KB
testcase_16 AC 149 ms
84,900 KB
testcase_17 AC 222 ms
93,824 KB
testcase_18 AC 90 ms
77,824 KB
testcase_19 AC 148 ms
85,628 KB
testcase_20 AC 180 ms
89,472 KB
testcase_21 AC 167 ms
86,400 KB
testcase_22 AC 88 ms
77,712 KB
testcase_23 AC 187 ms
90,720 KB
testcase_24 AC 107 ms
80,476 KB
testcase_25 AC 149 ms
85,660 KB
testcase_26 AC 200 ms
93,008 KB
testcase_27 AC 124 ms
81,576 KB
testcase_28 AC 249 ms
95,872 KB
testcase_29 AC 198 ms
92,800 KB
testcase_30 AC 62 ms
72,960 KB
testcase_31 AC 172 ms
93,252 KB
testcase_32 AC 149 ms
89,500 KB
testcase_33 AC 117 ms
86,192 KB
testcase_34 AC 130 ms
87,716 KB
testcase_35 AC 120 ms
86,600 KB
testcase_36 AC 60 ms
71,936 KB
testcase_37 AC 76 ms
79,672 KB
testcase_38 AC 145 ms
89,344 KB
testcase_39 AC 90 ms
80,916 KB
testcase_40 AC 90 ms
81,280 KB
testcase_41 AC 136 ms
87,936 KB
testcase_42 AC 94 ms
81,324 KB
testcase_43 AC 95 ms
81,476 KB
testcase_44 AC 96 ms
81,352 KB
testcase_45 AC 86 ms
80,768 KB
testcase_46 AC 63 ms
75,084 KB
testcase_47 AC 59 ms
70,528 KB
testcase_48 AC 150 ms
89,448 KB
testcase_49 AC 57 ms
67,840 KB
testcase_50 AC 38 ms
52,352 KB
testcase_51 AC 39 ms
52,736 KB
testcase_52 AC 261 ms
98,452 KB
testcase_53 AC 250 ms
98,316 KB
07_evil_01.txt AC 558 ms
122,900 KB
07_evil_02.txt AC 832 ms
145,688 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
readline=sys.stdin.readline

N=int(readline())
used=[False]*N
cnt=[0]*N
graph=[[] for x in range(N)]
for i in range(N):
    a,b=map(int,readline().split())
    a-=1;b-=1
    graph[a].append((b,i))
    graph[b].append((a,i))
    cnt[a]+=1
    cnt[b]+=1
ans_lst=[None]*N
if 0 in cnt:
    print("No")
    exit()
stack=[x for x in range(N) if cnt[x]==1]
while stack:
    x=stack.pop()
    for y,i in graph[x]:
        if not used[i]:
            cnt[x]-=1
            ans_lst[i]=x+1
            used[i]=True
            cnt[y]-=1
            if cnt[y]==1:
                stack.append(y)
            break
    else:
        print("No")
        exit()
for x in range(N):
    if cnt[x]==0:
        continue
    while cnt[x]:
        for y,i in graph[x]:
            if not used[i]:
                cnt[x]-=1
                cnt[y]-=1
                ans_lst[i]=x+1
                used[i]=True
                x=y
                break
print("Yes")
print(*ans_lst,sep="\n")
0