結果

問題 No.1640 簡単な色塗り
ユーザー ygd.ygd.
提出日時 2021-08-06 22:53:25
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 2,861 bytes
コンパイル時間 1,070 ms
コンパイル使用メモリ 87,244 KB
実行使用メモリ 156,848 KB
最終ジャッジ日時 2023-09-12 02:54:03
合計ジャッジ時間 39,198 ms
ジャッジサーバーID
(参考情報)
judge12 / judge13
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 AC 99 ms
71,748 KB
testcase_02 WA -
testcase_03 AC 98 ms
71,608 KB
testcase_04 AC 331 ms
156,848 KB
testcase_05 AC 330 ms
152,728 KB
testcase_06 WA -
testcase_07 AC 102 ms
71,652 KB
testcase_08 WA -
testcase_09 AC 99 ms
71,772 KB
testcase_10 WA -
testcase_11 WA -
testcase_12 WA -
testcase_13 WA -
testcase_14 WA -
testcase_15 WA -
testcase_16 WA -
testcase_17 WA -
testcase_18 WA -
testcase_19 WA -
testcase_20 WA -
testcase_21 WA -
testcase_22 WA -
testcase_23 WA -
testcase_24 WA -
testcase_25 WA -
testcase_26 WA -
testcase_27 WA -
testcase_28 WA -
testcase_29 WA -
testcase_30 AC 296 ms
86,196 KB
testcase_31 AC 711 ms
146,424 KB
testcase_32 AC 642 ms
138,364 KB
testcase_33 AC 519 ms
121,564 KB
testcase_34 AC 572 ms
129,056 KB
testcase_35 AC 507 ms
120,764 KB
testcase_36 AC 290 ms
85,884 KB
testcase_37 AC 318 ms
90,480 KB
testcase_38 AC 661 ms
140,260 KB
testcase_39 AC 416 ms
102,016 KB
testcase_40 AC 412 ms
100,572 KB
testcase_41 AC 586 ms
122,460 KB
testcase_42 AC 449 ms
108,460 KB
testcase_43 AC 464 ms
113,072 KB
testcase_44 AC 448 ms
108,988 KB
testcase_45 AC 397 ms
100,432 KB
testcase_46 AC 307 ms
87,960 KB
testcase_47 AC 268 ms
83,016 KB
testcase_48 AC 669 ms
143,036 KB
testcase_49 AC 212 ms
80,940 KB
testcase_50 AC 100 ms
71,744 KB
testcase_51 WA -
testcase_52 WA -
testcase_53 WA -
07_evil_01.txt WA -
07_evil_02.txt TLE -
権限があれば一括ダウンロードができます

ソースコード

diff #

from heapq import heapify, heappop, heappush
from collections import defaultdict 
from collections import deque

class UnionFind(object):
    def __init__(self, n=1):
        self.par = [i for i in range(n)]
        self.rank = [0 for _ in range(n)]
        self.size = [1 for _ in range(n)]
    def find(self, x):
        """
        x が属するグループを探索して親を出す。
        """
        if self.par[x] == x:
            return x
        else:
            self.par[x] = self.find(self.par[x])
            return self.par[x]
    def union(self, x, y):
        """
        x と y のグループを結合
        """
        x = self.find(x)
        y = self.find(y)
        if x != y:
            if self.rank[x] < self.rank[y]:
                x, y = y, x
            if self.rank[x] == self.rank[y]:
                self.rank[x] += 1
            self.par[y] = x
            self.size[x] += self.size[y]
    def is_same(self, x, y):
        """
        x と y が同じグループか否か
        """
        return self.find(x) == self.find(y)
    def get_size(self, x):
        """
        x が属するグループの要素数
        """
        x = self.find(x)
        return self.size[x]


def main():
    N = int(input())
    deg = [0]*N
    dic = defaultdict(list)
    uf = UnionFind(N)
    for i in range(N):
        a,b = map(int,input().split())
        a -= 1; b -= 1
        deg[a] += 1
        deg[b] += 1
        dic[a].append((b,i)) #行先、辺の番号
        dic[b].append((a,i))
        uf.union(a,b)
    G = [[] for _ in range(N)]
    PL = set([])
    for i in range(N):
        par = uf.find(i)
        PL.add(par)
        heappush(G[par], (deg[i],i))
    #print(G)
    Q = deque([])
    #for i in range(N):
    #    heappush(PQ,(deg[i],i))
    ret = []
    used_point = set([])
    used_edge = set([])
    for par in PL:
        Q = []
        d,i = heappop(G[par])
        if i in used_point: continue
        heappush(Q,(d,i))
        while G[par] and G[par][0][0] == 1: #出る数が1なら追加
            d,i = heappop(G[par])
            if i in used_point: continue
            heappush(Q,(d,i))
        while Q:
            d,v = heappop(Q)
            #print("v",v)
            if v in used_point: continue
            for u,edge_idx in dic[v]:
                #print(u,edge_idx,used_edge)
                if edge_idx in used_edge: continue
                ret.append(v)
                used_point.add(v)
                used_edge.add(edge_idx)
                deg[v] -= 1
                deg[u] -= 1
                if u not in used_point:
                    heappush(Q,(deg[u],u))
                break
    #print(ret)
    if len(ret) == N:
        print('Yes')
        ret = [x+1 for x in ret]
        print(*ret,sep="\n")
    else:
        print('No')

if __name__ == '__main__':
    main()
0