結果

問題 No.1640 簡単な色塗り
ユーザー roarisroaris
提出日時 2021-08-06 22:51:18
言語 PyPy3
(7.3.15)
結果
WA  
(最新)
AC  
(最初)
実行時間 -
コード長 1,989 bytes
コンパイル時間 251 ms
コンパイル使用メモリ 82,248 KB
実行使用メモリ 116,604 KB
最終ジャッジ日時 2024-06-29 15:55:13
合計ジャッジ時間 20,716 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 41 ms
54,144 KB
testcase_01 AC 41 ms
54,016 KB
testcase_02 AC 42 ms
53,888 KB
testcase_03 AC 41 ms
54,528 KB
testcase_04 AC 228 ms
116,604 KB
testcase_05 AC 194 ms
96,860 KB
testcase_06 AC 40 ms
55,436 KB
testcase_07 AC 41 ms
55,140 KB
testcase_08 AC 41 ms
55,432 KB
testcase_09 AC 40 ms
54,544 KB
testcase_10 AC 269 ms
89,760 KB
testcase_11 AC 241 ms
87,460 KB
testcase_12 AC 226 ms
86,368 KB
testcase_13 AC 356 ms
96,092 KB
testcase_14 AC 331 ms
96,044 KB
testcase_15 AC 206 ms
83,504 KB
testcase_16 AC 219 ms
84,904 KB
testcase_17 AC 299 ms
92,792 KB
testcase_18 AC 148 ms
78,760 KB
testcase_19 AC 226 ms
86,496 KB
testcase_20 AC 253 ms
88,580 KB
testcase_21 AC 236 ms
86,984 KB
testcase_22 AC 128 ms
78,400 KB
testcase_23 AC 280 ms
89,644 KB
testcase_24 AC 175 ms
80,960 KB
testcase_25 AC 249 ms
86,820 KB
testcase_26 AC 276 ms
91,268 KB
testcase_27 AC 199 ms
83,528 KB
testcase_28 AC 330 ms
95,376 KB
testcase_29 AC 283 ms
91,428 KB
testcase_30 AC 147 ms
80,156 KB
testcase_31 AC 265 ms
96,872 KB
testcase_32 AC 242 ms
93,824 KB
testcase_33 AC 208 ms
88,576 KB
testcase_34 AC 225 ms
90,864 KB
testcase_35 AC 214 ms
88,320 KB
testcase_36 AC 143 ms
79,852 KB
testcase_37 AC 147 ms
81,396 KB
testcase_38 AC 258 ms
94,392 KB
testcase_39 AC 164 ms
84,868 KB
testcase_40 AC 176 ms
85,024 KB
testcase_41 AC 222 ms
92,024 KB
testcase_42 AC 187 ms
85,468 KB
testcase_43 AC 184 ms
87,020 KB
testcase_44 AC 186 ms
85,888 KB
testcase_45 AC 171 ms
84,060 KB
testcase_46 AC 148 ms
80,424 KB
testcase_47 AC 141 ms
78,800 KB
testcase_48 AC 269 ms
94,452 KB
testcase_49 AC 111 ms
78,180 KB
testcase_50 AC 42 ms
53,888 KB
testcase_51 AC 42 ms
53,888 KB
testcase_52 WA -
testcase_53 WA -
07_evil_01.txt AC 696 ms
120,636 KB
07_evil_02.txt WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = sys.stdin.readline
from collections import *

class Unionfind:
    def __init__(self, n):
        self.par = [-1]*n
        self.rank = [1]*n
    
    def root(self, x):
        r = x
        
        while not self.par[r]<0:
            r = self.par[r]
        
        t = x
        
        while t!=r:
            tmp = t
            t = self.par[t]
            self.par[tmp] = r
        
        return r
    
    def unite(self, x, y):
        rx = self.root(x)
        ry = self.root(y)
        
        if rx==ry:
            return
        
        if self.rank[rx]<=self.rank[ry]:
            self.par[ry] += self.par[rx]
            self.par[rx] = ry
            
            if self.rank[rx]==self.rank[ry]:
                self.rank[ry] += 1
        else:
            self.par[rx] += self.par[ry]
            self.par[ry] = rx
    
    def is_same(self, x, y):
        return self.root(x)==self.root(y)
    
    def count(self, x):
        return -self.par[self.root(x)]

def bfs(s):
    dist[s] = 0
    q = deque([s])
    
    while q:
        v = q.popleft()
        
        for nv in G[v]:
            if dist[nv]==-1:
                dist[nv] = dist[v]+1
                q.append(nv)
    
    return dist
    
N = int(input())
AB = []
uf = Unionfind(N)
ex_edges = set()
G = [[] for _ in range(N)]

for _ in range(N):
    A, B = map(int, input().split())
    AB.append((A-1, B-1))
    
    if uf.is_same(A-1, B-1):
        ex_edges.add((A-1, B-1))
    else:
        uf.unite(A-1, B-1)
        G[A-1].append(B-1)
        G[B-1].append(A-1)
    
ex_cnt = defaultdict(int)

for A, _ in ex_edges:
    ex_cnt[uf.root(A)] += 1

rs = set(uf.root(i) for i in range(N))

for r in rs:
    if ex_cnt[r]==0:
        exit(print('No'))
        
dist = [-1]*N

for A, _ in ex_edges:
    bfs(A)

print('Yes')

for A, B in AB:
    if (A, B) in ex_edges:
        print(A+1)
    else:
        if dist[A]>dist[B]:
            print(A+1)
        else:
            print(B+1)
0