結果

問題 No.1477 Lamps on Graph
ユーザー hiragnhiragn
提出日時 2022-11-29 22:54:02
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 420 ms / 2,000 ms
コード長 762 bytes
コンパイル時間 226 ms
コンパイル使用メモリ 81,792 KB
実行使用メモリ 106,056 KB
最終ジャッジ日時 2024-10-07 08:52:30
合計ジャッジ時間 10,306 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
52,352 KB
testcase_01 AC 41 ms
52,352 KB
testcase_02 AC 39 ms
52,096 KB
testcase_03 AC 39 ms
52,224 KB
testcase_04 AC 39 ms
52,352 KB
testcase_05 AC 39 ms
52,736 KB
testcase_06 AC 40 ms
52,480 KB
testcase_07 AC 39 ms
52,992 KB
testcase_08 AC 37 ms
52,992 KB
testcase_09 AC 38 ms
52,096 KB
testcase_10 AC 38 ms
52,608 KB
testcase_11 AC 38 ms
52,480 KB
testcase_12 AC 251 ms
86,144 KB
testcase_13 AC 282 ms
88,360 KB
testcase_14 AC 307 ms
88,592 KB
testcase_15 AC 182 ms
80,288 KB
testcase_16 AC 148 ms
82,536 KB
testcase_17 AC 169 ms
82,176 KB
testcase_18 AC 275 ms
95,216 KB
testcase_19 AC 236 ms
87,516 KB
testcase_20 AC 182 ms
80,100 KB
testcase_21 AC 248 ms
92,988 KB
testcase_22 AC 139 ms
77,824 KB
testcase_23 AC 197 ms
81,464 KB
testcase_24 AC 373 ms
93,192 KB
testcase_25 AC 178 ms
80,816 KB
testcase_26 AC 283 ms
92,420 KB
testcase_27 AC 179 ms
81,408 KB
testcase_28 AC 215 ms
84,100 KB
testcase_29 AC 211 ms
84,280 KB
testcase_30 AC 181 ms
87,484 KB
testcase_31 AC 174 ms
82,972 KB
testcase_32 AC 394 ms
106,056 KB
testcase_33 AC 381 ms
104,664 KB
testcase_34 AC 234 ms
100,524 KB
testcase_35 AC 420 ms
98,664 KB
testcase_36 AC 418 ms
97,600 KB
testcase_37 AC 286 ms
93,824 KB
testcase_38 AC 340 ms
94,244 KB
testcase_39 AC 370 ms
97,512 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import heapq
import sys

input = sys.stdin.readline

n, m = map(int, input().split())
a = list(map(int, input().split()))

adj = [[] for _ in range(n)]
for _ in range(m):
    u, v = map(int, input().split())
    u -= 1
    v -= 1
    if a[u] < a[v]:
        adj[u].append(v)
    if a[v] < a[u]:
        adj[v].append(u)

_ = int(input())
b = list(map(int, input().split()))
onoff = [0] * n
for i in b:
    onoff[i - 1] = 1

hq = [(a[i - 1], i - 1) for i in b]
heapq.heapify(hq)
ans = []
while hq:
    x, y = heapq.heappop(hq)
    if onoff[y] == 0:
        continue
    ans.append(y + 1)
    onoff[y] = False
    for v in adj[y]:
        onoff[v] = 1 - onoff[v]
        if onoff[v]:
            heapq.heappush(hq, (a[v], v))

print(len(ans))
print(*ans, sep='\n')
0