結果

問題 No.1477 Lamps on Graph
ユーザー DrDrpilotDrDrpilot
提出日時 2022-03-15 12:34:28
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 947 ms / 2,000 ms
コード長 655 bytes
コンパイル時間 102 ms
コンパイル使用メモリ 12,800 KB
実行使用メモリ 40,860 KB
最終ジャッジ日時 2024-09-22 04:30:49
合計ジャッジ時間 18,697 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 31 ms
10,880 KB
testcase_01 AC 30 ms
10,880 KB
testcase_02 AC 30 ms
10,880 KB
testcase_03 AC 30 ms
10,880 KB
testcase_04 AC 31 ms
11,008 KB
testcase_05 AC 30 ms
10,880 KB
testcase_06 AC 30 ms
10,880 KB
testcase_07 AC 29 ms
11,008 KB
testcase_08 AC 30 ms
11,008 KB
testcase_09 AC 30 ms
11,008 KB
testcase_10 AC 30 ms
11,008 KB
testcase_11 AC 29 ms
10,880 KB
testcase_12 AC 497 ms
22,768 KB
testcase_13 AC 476 ms
25,580 KB
testcase_14 AC 612 ms
25,492 KB
testcase_15 AC 298 ms
16,128 KB
testcase_16 AC 133 ms
16,676 KB
testcase_17 AC 133 ms
16,856 KB
testcase_18 AC 444 ms
33,516 KB
testcase_19 AC 374 ms
24,340 KB
testcase_20 AC 211 ms
15,232 KB
testcase_21 AC 402 ms
30,552 KB
testcase_22 AC 175 ms
13,056 KB
testcase_23 AC 411 ms
17,636 KB
testcase_24 AC 711 ms
31,896 KB
testcase_25 AC 281 ms
16,512 KB
testcase_26 AC 578 ms
31,196 KB
testcase_27 AC 318 ms
17,028 KB
testcase_28 AC 333 ms
20,156 KB
testcase_29 AC 384 ms
20,004 KB
testcase_30 AC 232 ms
23,380 KB
testcase_31 AC 165 ms
18,748 KB
testcase_32 AC 947 ms
40,840 KB
testcase_33 AC 893 ms
40,860 KB
testcase_34 AC 776 ms
37,564 KB
testcase_35 AC 903 ms
37,836 KB
testcase_36 AC 842 ms
36,208 KB
testcase_37 AC 643 ms
30,384 KB
testcase_38 AC 699 ms
32,048 KB
testcase_39 AC 825 ms
35,880 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import heapq
n,m=map(int,input().split())
a=list(map(int,input().split()))
g=[[] for _ in range(n)]
for _ in range(m):
    u,v=map(int,input().split())
    u-=1;v-=1
    if a[u]<a[v]:
        g[u].append(v)
    if a[u]>a[v]:
        g[v].append(u)
k=int(input())
b=list(map(int,input().split()))
memo=[0]*n
for i in b:
    memo[i-1]=1
q=[(a[i-1],i-1) for i in b]
heapq.heapify(q)
ans=[]
while q:
    num,now=heapq.heappop(q)
    if memo[now]==0:
        continue
    ans.append(now)
    memo[now]=0
    for to in g[now]:
        memo[to]=1-memo[to]
        if memo[to]:
            heapq.heappush(q,(a[to],to))
print(len(ans))
for i in ans:
    print(i+1)
0