結果

問題 No.1640 簡単な色塗り
ユーザー ygd.ygd.
提出日時 2021-08-06 22:21:42
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 1,747 bytes
コンパイル時間 241 ms
コンパイル使用メモリ 82,428 KB
実行使用メモリ 127,652 KB
最終ジャッジ日時 2024-06-29 15:23:45
合計ジャッジ時間 17,748 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 AC 41 ms
55,364 KB
testcase_02 WA -
testcase_03 AC 42 ms
54,612 KB
testcase_04 AC 229 ms
127,652 KB
testcase_05 WA -
testcase_06 WA -
testcase_07 WA -
testcase_08 WA -
testcase_09 AC 43 ms
54,920 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 106 ms
81,188 KB
testcase_31 AC 302 ms
120,792 KB
testcase_32 AC 275 ms
125,224 KB
testcase_33 AC 208 ms
110,596 KB
testcase_34 AC 219 ms
105,684 KB
testcase_35 AC 195 ms
109,980 KB
testcase_36 AC 108 ms
81,348 KB
testcase_37 AC 118 ms
85,000 KB
testcase_38 AC 300 ms
126,152 KB
testcase_39 AC 155 ms
93,888 KB
testcase_40 AC 165 ms
94,848 KB
testcase_41 AC 256 ms
113,408 KB
testcase_42 AC 182 ms
97,468 KB
testcase_43 AC 180 ms
98,404 KB
testcase_44 AC 171 ms
95,324 KB
testcase_45 AC 155 ms
91,968 KB
testcase_46 AC 109 ms
81,996 KB
testcase_47 AC 100 ms
79,200 KB
testcase_48 AC 314 ms
126,244 KB
testcase_49 AC 94 ms
77,500 KB
testcase_50 AC 42 ms
55,164 KB
testcase_51 AC 42 ms
55,732 KB
testcase_52 WA -
testcase_53 WA -
07_evil_01.txt WA -
07_evil_02.txt WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

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


def main():
    N = int(input())
    deg = [0]*N
    dic = defaultdict(list)
    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))
        
    PQ = []
    #for i in range(N):
    #    heappush(PQ,(deg[i],i))
    ret = []
    used_point = set([])
    used_edge = set([])
    for i in range(N):
        if i in used_point: continue
        heappush(PQ,(deg[i],i))
        while PQ:
            #print(PQ)
            d,v = heappop(PQ)
            #print(d,v)
            for u,edge_idx in dic[v]:
                if v in used_point and u in used_point: continue
                if edge_idx in used_edge: continue
                if v in used_point:
                    ret.append(u)
                    used_point.add(u)
                    used_edge.add(edge_idx)
                    deg[v] -= 1
                    deg[u] -= 1
                elif u in used_point:
                    ret.append(v)
                    used_point.add(v)
                    used_edge.add(edge_idx)
                    deg[v] -= 1
                    deg[u] -= 1
                else:
                    ret.append(v)
                    deg[v] -= 1
                    deg[u] -= 1
                    used_point.add(v)
                    used_edge.add(edge_idx)
                    #print("push",u,edge_idx)
                    heappush(PQ,(deg[u],u))
    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