結果
問題 | No.1640 簡単な色塗り |
ユーザー | ygd. |
提出日時 | 2021-08-06 22:37:35 |
言語 | PyPy3 (7.3.15) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,330 bytes |
コンパイル時間 | 142 ms |
コンパイル使用メモリ | 82,480 KB |
実行使用メモリ | 141,000 KB |
最終ジャッジ日時 | 2024-06-29 15:43:45 |
合計ジャッジ時間 | 22,018 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | WA | - |
testcase_01 | AC | 46 ms
54,272 KB |
testcase_02 | WA | - |
testcase_03 | AC | 46 ms
54,144 KB |
testcase_04 | AC | 320 ms
121,256 KB |
testcase_05 | AC | 304 ms
140,716 KB |
testcase_06 | WA | - |
testcase_07 | AC | 41 ms
54,144 KB |
testcase_08 | WA | - |
testcase_09 | AC | 40 ms
54,400 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 | 148 ms
84,096 KB |
testcase_31 | AC | 411 ms
139,988 KB |
testcase_32 | AC | 373 ms
130,760 KB |
testcase_33 | AC | 284 ms
115,620 KB |
testcase_34 | AC | 323 ms
121,064 KB |
testcase_35 | AC | 285 ms
115,756 KB |
testcase_36 | AC | 153 ms
83,968 KB |
testcase_37 | AC | 168 ms
87,296 KB |
testcase_38 | AC | 382 ms
134,356 KB |
testcase_39 | AC | 218 ms
97,736 KB |
testcase_40 | AC | 218 ms
98,312 KB |
testcase_41 | AC | 331 ms
119,560 KB |
testcase_42 | AC | 238 ms
102,476 KB |
testcase_43 | AC | 242 ms
103,792 KB |
testcase_44 | AC | 241 ms
99,372 KB |
testcase_45 | AC | 205 ms
95,716 KB |
testcase_46 | AC | 155 ms
84,608 KB |
testcase_47 | AC | 137 ms
81,240 KB |
testcase_48 | AC | 393 ms
134,832 KB |
testcase_49 | AC | 117 ms
78,336 KB |
testcase_50 | AC | 42 ms
54,272 KB |
testcase_51 | WA | - |
testcase_52 | WA | - |
testcase_53 | WA | - |
07_evil_01.txt | WA | - |
07_evil_02.txt | WA | - |
ソースコード
from heapq import heapify, heappop, heappush from collections import defaultdict from collections import deque 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)) Q = deque([]) #for i in range(N): # heappush(PQ,(deg[i],i)) ret = [] used_point = set([]) used_edge = set([]) while PQ: d,i = heappop(PQ) if i in used_point: continue Q.append(i) while Q: v = Q.popleft() #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) if u not in used_point: Q.append(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()