結果

問題 No.1640 簡単な色塗り
ユーザー ygd.ygd.
提出日時 2021-08-06 22:53:25
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 2,861 bytes
コンパイル時間 286 ms
コンパイル使用メモリ 82,432 KB
実行使用メモリ 157,116 KB
最終ジャッジ日時 2024-06-29 15:57:41
合計ジャッジ時間 29,232 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 AC 42 ms
55,040 KB
testcase_02 WA -
testcase_03 AC 43 ms
54,272 KB
testcase_04 AC 279 ms
157,116 KB
testcase_05 AC 234 ms
146,848 KB
testcase_06 WA -
testcase_07 AC 41 ms
54,528 KB
testcase_08 WA -
testcase_09 AC 46 ms
54,656 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 206 ms
85,120 KB
testcase_31 AC 522 ms
144,432 KB
testcase_32 AC 457 ms
136,484 KB
testcase_33 AC 410 ms
119,088 KB
testcase_34 AC 419 ms
124,180 KB
testcase_35 AC 365 ms
118,964 KB
testcase_36 AC 195 ms
84,420 KB
testcase_37 AC 227 ms
88,192 KB
testcase_38 AC 489 ms
136,932 KB
testcase_39 AC 287 ms
99,712 KB
testcase_40 AC 280 ms
99,200 KB
testcase_41 AC 411 ms
130,072 KB
testcase_42 AC 300 ms
105,472 KB
testcase_43 AC 311 ms
108,372 KB
testcase_44 AC 318 ms
106,888 KB
testcase_45 AC 265 ms
97,512 KB
testcase_46 AC 204 ms
85,596 KB
testcase_47 AC 179 ms
81,480 KB
testcase_48 AC 483 ms
137,936 KB
testcase_49 AC 131 ms
78,652 KB
testcase_50 AC 43 ms
54,656 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