結果

問題 No.1640 簡単な色塗り
ユーザー titiatitia
提出日時 2021-08-06 22:09:46
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 728 ms / 2,000 ms
コード長 1,682 bytes
コンパイル時間 155 ms
コンパイル使用メモリ 12,800 KB
実行使用メモリ 53,248 KB
最終ジャッジ日時 2024-06-29 15:17:40
合計ジャッジ時間 27,888 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 29 ms
10,880 KB
testcase_01 AC 29 ms
10,880 KB
testcase_02 AC 29 ms
11,008 KB
testcase_03 AC 30 ms
10,752 KB
testcase_04 AC 467 ms
53,248 KB
testcase_05 AC 439 ms
50,176 KB
testcase_06 AC 28 ms
10,880 KB
testcase_07 AC 29 ms
10,880 KB
testcase_08 AC 30 ms
10,880 KB
testcase_09 AC 29 ms
11,008 KB
testcase_10 AC 396 ms
34,688 KB
testcase_11 AC 318 ms
30,208 KB
testcase_12 AC 276 ms
28,160 KB
testcase_13 AC 620 ms
47,104 KB
testcase_14 AC 614 ms
46,976 KB
testcase_15 AC 218 ms
23,424 KB
testcase_16 AC 262 ms
26,112 KB
testcase_17 AC 518 ms
40,832 KB
testcase_18 AC 63 ms
13,568 KB
testcase_19 AC 277 ms
27,776 KB
testcase_20 AC 383 ms
33,792 KB
testcase_21 AC 315 ms
29,696 KB
testcase_22 AC 50 ms
12,800 KB
testcase_23 AC 424 ms
35,712 KB
testcase_24 AC 121 ms
17,792 KB
testcase_25 AC 280 ms
28,288 KB
testcase_26 AC 451 ms
38,400 KB
testcase_27 AC 188 ms
22,656 KB
testcase_28 AC 589 ms
45,312 KB
testcase_29 AC 446 ms
37,888 KB
testcase_30 AC 94 ms
16,384 KB
testcase_31 AC 610 ms
49,152 KB
testcase_32 AC 513 ms
44,160 KB
testcase_33 AC 334 ms
33,664 KB
testcase_34 AC 434 ms
39,040 KB
testcase_35 AC 337 ms
33,536 KB
testcase_36 AC 93 ms
16,384 KB
testcase_37 AC 121 ms
18,816 KB
testcase_38 AC 551 ms
45,696 KB
testcase_39 AC 236 ms
25,728 KB
testcase_40 AC 232 ms
25,984 KB
testcase_41 AC 450 ms
39,936 KB
testcase_42 AC 266 ms
28,160 KB
testcase_43 AC 282 ms
28,800 KB
testcase_44 AC 264 ms
28,288 KB
testcase_45 AC 203 ms
24,192 KB
testcase_46 AC 102 ms
17,152 KB
testcase_47 AC 75 ms
14,848 KB
testcase_48 AC 543 ms
46,336 KB
testcase_49 AC 49 ms
12,672 KB
testcase_50 AC 30 ms
11,008 KB
testcase_51 AC 30 ms
10,880 KB
testcase_52 AC 722 ms
50,176 KB
testcase_53 AC 728 ms
50,048 KB
07_evil_01.txt AC 1,551 ms
92,160 KB
07_evil_02.txt TLE -
権限があれば一括ダウンロードができます

ソースコード

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