結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
52,096 KB
testcase_01 AC 41 ms
52,096 KB
testcase_02 AC 40 ms
51,840 KB
testcase_03 AC 41 ms
51,968 KB
testcase_04 AC 150 ms
98,048 KB
testcase_05 AC 146 ms
98,048 KB
testcase_06 AC 40 ms
52,096 KB
testcase_07 AC 39 ms
52,096 KB
testcase_08 AC 39 ms
51,968 KB
testcase_09 AC 40 ms
52,096 KB
testcase_10 AC 200 ms
90,880 KB
testcase_11 AC 172 ms
86,912 KB
testcase_12 AC 165 ms
85,888 KB
testcase_13 AC 271 ms
97,152 KB
testcase_14 AC 266 ms
97,408 KB
testcase_15 AC 142 ms
83,456 KB
testcase_16 AC 155 ms
85,248 KB
testcase_17 AC 227 ms
94,080 KB
testcase_18 AC 101 ms
77,836 KB
testcase_19 AC 166 ms
85,632 KB
testcase_20 AC 200 ms
89,472 KB
testcase_21 AC 171 ms
86,272 KB
testcase_22 AC 102 ms
77,312 KB
testcase_23 AC 210 ms
90,752 KB
testcase_24 AC 120 ms
80,128 KB
testcase_25 AC 255 ms
85,760 KB
testcase_26 AC 463 ms
92,928 KB
testcase_27 AC 134 ms
81,536 KB
testcase_28 AC 263 ms
96,128 KB
testcase_29 AC 213 ms
92,544 KB
testcase_30 AC 71 ms
72,576 KB
testcase_31 AC 183 ms
93,824 KB
testcase_32 AC 152 ms
89,728 KB
testcase_33 AC 131 ms
86,272 KB
testcase_34 AC 138 ms
87,936 KB
testcase_35 AC 131 ms
86,400 KB
testcase_36 AC 69 ms
72,704 KB
testcase_37 AC 86 ms
79,488 KB
testcase_38 AC 158 ms
89,472 KB
testcase_39 AC 101 ms
81,024 KB
testcase_40 AC 102 ms
80,896 KB
testcase_41 AC 150 ms
88,064 KB
testcase_42 AC 106 ms
81,536 KB
testcase_43 AC 108 ms
81,408 KB
testcase_44 AC 106 ms
82,048 KB
testcase_45 AC 100 ms
80,640 KB
testcase_46 AC 74 ms
74,368 KB
testcase_47 AC 69 ms
70,272 KB
testcase_48 AC 170 ms
89,600 KB
testcase_49 AC 65 ms
67,328 KB
testcase_50 AC 40 ms
52,224 KB
testcase_51 AC 40 ms
52,096 KB
testcase_52 AC 281 ms
98,304 KB
testcase_53 AC 275 ms
98,688 KB
07_evil_01.txt AC 569 ms
123,168 KB
07_evil_02.txt AC 854 ms
145,540 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