結果

問題 No.1640 簡単な色塗り
ユーザー titiatitia
提出日時 2021-08-06 23:20:35
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 234 ms / 2,000 ms
コード長 1,682 bytes
コンパイル時間 222 ms
コンパイル使用メモリ 82,128 KB
実行使用メモリ 96,384 KB
最終ジャッジ日時 2024-06-29 16:16:24
合計ジャッジ時間 16,467 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
53,560 KB
testcase_01 AC 36 ms
52,960 KB
testcase_02 AC 36 ms
53,752 KB
testcase_03 AC 37 ms
54,244 KB
testcase_04 AC 128 ms
96,384 KB
testcase_05 AC 129 ms
95,896 KB
testcase_06 AC 35 ms
52,948 KB
testcase_07 AC 37 ms
52,744 KB
testcase_08 AC 37 ms
53,032 KB
testcase_09 AC 37 ms
53,004 KB
testcase_10 AC 160 ms
88,676 KB
testcase_11 AC 140 ms
86,308 KB
testcase_12 AC 135 ms
84,744 KB
testcase_13 AC 222 ms
95,604 KB
testcase_14 AC 219 ms
95,424 KB
testcase_15 AC 116 ms
82,736 KB
testcase_16 AC 126 ms
83,644 KB
testcase_17 AC 189 ms
92,016 KB
testcase_18 AC 85 ms
77,860 KB
testcase_19 AC 133 ms
84,956 KB
testcase_20 AC 163 ms
87,948 KB
testcase_21 AC 139 ms
85,892 KB
testcase_22 AC 84 ms
77,128 KB
testcase_23 AC 169 ms
89,460 KB
testcase_24 AC 99 ms
79,892 KB
testcase_25 AC 130 ms
85,288 KB
testcase_26 AC 177 ms
90,356 KB
testcase_27 AC 114 ms
81,400 KB
testcase_28 AC 208 ms
94,464 KB
testcase_29 AC 168 ms
90,412 KB
testcase_30 AC 79 ms
78,856 KB
testcase_31 AC 211 ms
95,240 KB
testcase_32 AC 182 ms
90,836 KB
testcase_33 AC 138 ms
87,352 KB
testcase_34 AC 161 ms
89,816 KB
testcase_35 AC 137 ms
87,620 KB
testcase_36 AC 80 ms
79,552 KB
testcase_37 AC 84 ms
79,696 KB
testcase_38 AC 202 ms
93,492 KB
testcase_39 AC 110 ms
81,796 KB
testcase_40 AC 107 ms
82,104 KB
testcase_41 AC 165 ms
89,204 KB
testcase_42 AC 117 ms
82,464 KB
testcase_43 AC 118 ms
83,024 KB
testcase_44 AC 113 ms
82,936 KB
testcase_45 AC 103 ms
81,348 KB
testcase_46 AC 82 ms
79,124 KB
testcase_47 AC 77 ms
77,880 KB
testcase_48 AC 202 ms
93,928 KB
testcase_49 AC 64 ms
71,748 KB
testcase_50 AC 36 ms
53,432 KB
testcase_51 AC 37 ms
52,560 KB
testcase_52 AC 233 ms
96,384 KB
testcase_53 AC 234 ms
96,048 KB
07_evil_01.txt AC 468 ms
119,916 KB
07_evil_02.txt AC 723 ms
143,928 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = sys.stdin.readline

N=int(input())

# UnionFind

Group = [i for i in range(N+1)] # グループ分け
Nodes = [1]*(N+1) # 各グループのノードの数

def find(x):
    while Group[x] != x:
        x=Group[x]
    return x

def Union(x,y):
    if find(x) != find(y):
        if Nodes[find(x)] < Nodes[find(y)]:
            
            Nodes[find(y)] += Nodes[find(x)]
            Nodes[find(x)] = 0
            Group[find(x)] = find(y)
            
        else:
            Nodes[find(x)] += Nodes[find(y)]
            Nodes[find(y)] = 0
            Group[find(y)] = find(x)

DEG=[0]*(N+1)

E=[[] for i in range(N+1)]
for i in range(N):
    a,b=map(int,input().split())
    DEG[a]+=1
    DEG[b]+=1

    E[a].append((b,i))
    E[b].append((a,i))



Q=[]
for i in range(N+1):
    if DEG[i]==1:
        Q.append(i)

ANS=[-1]*N
USE=[0]*(N+1)

USE[0]=1

while Q:
    x=Q.pop()
    USE[x]=1
    for to,ind in E[x]:
        if USE[to]==0:
            ANS[ind]=x
            DEG[to]-=1
            if DEG[to]==1:
                Q.append(to)


for i in range(N+1):
    if USE[i]==0:
        NOW=i
        while True:
            flag=0
            USE[NOW]=1
            
            for to,ind in E[NOW]:
                if USE[to]==0:
                    ANS[ind]=NOW
                    NOW=to
                    flag=1
                    break

            if flag==0:
                for to,ind in E[NOW]:
                    if ANS[ind]==-1:
                        ANS[ind]=NOW
                        break
                break

if -1 in ANS:
    print("No")
else:
    print("Yes")
    for ans in ANS:
        print(ans)
            
    


            
0