結果

問題 No.1477 Lamps on Graph
ユーザー ああいいああいい
提出日時 2021-12-27 15:17:13
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 1,054 ms / 2,000 ms
コード長 696 bytes
コンパイル時間 121 ms
コンパイル使用メモリ 12,800 KB
実行使用メモリ 37,608 KB
最終ジャッジ日時 2024-09-25 08:46:23
合計ジャッジ時間 19,798 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 31 ms
10,752 KB
testcase_01 AC 35 ms
10,880 KB
testcase_02 AC 35 ms
10,880 KB
testcase_03 AC 36 ms
10,752 KB
testcase_04 AC 31 ms
10,752 KB
testcase_05 AC 31 ms
10,752 KB
testcase_06 AC 32 ms
10,752 KB
testcase_07 AC 32 ms
10,880 KB
testcase_08 AC 32 ms
10,752 KB
testcase_09 AC 32 ms
10,880 KB
testcase_10 AC 32 ms
10,880 KB
testcase_11 AC 32 ms
10,752 KB
testcase_12 AC 571 ms
22,112 KB
testcase_13 AC 577 ms
24,152 KB
testcase_14 AC 677 ms
24,584 KB
testcase_15 AC 307 ms
15,872 KB
testcase_16 AC 141 ms
16,288 KB
testcase_17 AC 142 ms
16,392 KB
testcase_18 AC 520 ms
31,124 KB
testcase_19 AC 402 ms
23,288 KB
testcase_20 AC 213 ms
14,848 KB
testcase_21 AC 458 ms
28,240 KB
testcase_22 AC 175 ms
12,928 KB
testcase_23 AC 416 ms
17,356 KB
testcase_24 AC 787 ms
29,684 KB
testcase_25 AC 289 ms
16,000 KB
testcase_26 AC 618 ms
29,388 KB
testcase_27 AC 323 ms
16,888 KB
testcase_28 AC 335 ms
19,860 KB
testcase_29 AC 379 ms
19,344 KB
testcase_30 AC 253 ms
21,948 KB
testcase_31 AC 174 ms
18,088 KB
testcase_32 AC 1,054 ms
37,608 KB
testcase_33 AC 1,003 ms
37,476 KB
testcase_34 AC 791 ms
33,980 KB
testcase_35 AC 960 ms
35,656 KB
testcase_36 AC 901 ms
34,324 KB
testcase_37 AC 711 ms
29,720 KB
testcase_38 AC 786 ms
31,496 KB
testcase_39 AC 917 ms
34,068 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N,M = map(int,input().split())
A = list(map(int,input().split()))
G = [[] for _ in range(N+1)]
for _ in range(M):
    u,v = map(int,input().split())
    if A[u-1] < A[v-1]:
        G[u].append(v)
    elif A[u-1] > A[v-1]:
        G[v].append(u)
K = int(input())
B = list(map(int,input().split()))
memo = [False] * (N + 1)
for b in B:
    memo[b] = True
import heapq
q = [(A[b-1],b) for b in B]
heapq.heapify(q)
ans = []
while (len(q)):
    a,b = heapq.heappop(q)
    if memo[b] == False:
        continue
    ans.append(b)
    memo[b] = False
    for v in G[b]:
        memo[v] = not memo[v]
        if memo[v]:
            heapq.heappush(q,(A[v-1],v))
print(len(ans))
for a in ans:
    print(a)
0