結果

問題 No.1477 Lamps on Graph
ユーザー hiragnhiragn
提出日時 2022-11-29 22:49:52
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 486 ms / 2,000 ms
コード長 660 bytes
コンパイル時間 295 ms
コンパイル使用メモリ 82,604 KB
実行使用メモリ 106,844 KB
最終ジャッジ日時 2024-10-07 08:50:51
合計ジャッジ時間 11,831 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
53,760 KB
testcase_01 AC 39 ms
53,244 KB
testcase_02 AC 38 ms
53,136 KB
testcase_03 AC 39 ms
53,008 KB
testcase_04 AC 39 ms
53,088 KB
testcase_05 AC 40 ms
54,252 KB
testcase_06 AC 39 ms
52,884 KB
testcase_07 AC 38 ms
53,444 KB
testcase_08 AC 39 ms
52,992 KB
testcase_09 AC 40 ms
54,148 KB
testcase_10 AC 40 ms
54,340 KB
testcase_11 AC 39 ms
53,080 KB
testcase_12 AC 322 ms
86,008 KB
testcase_13 AC 341 ms
89,756 KB
testcase_14 AC 362 ms
87,560 KB
testcase_15 AC 232 ms
80,672 KB
testcase_16 AC 175 ms
82,220 KB
testcase_17 AC 200 ms
81,992 KB
testcase_18 AC 294 ms
93,896 KB
testcase_19 AC 263 ms
86,900 KB
testcase_20 AC 208 ms
80,176 KB
testcase_21 AC 277 ms
93,400 KB
testcase_22 AC 167 ms
78,376 KB
testcase_23 AC 234 ms
81,676 KB
testcase_24 AC 429 ms
94,836 KB
testcase_25 AC 207 ms
80,380 KB
testcase_26 AC 323 ms
92,860 KB
testcase_27 AC 234 ms
81,804 KB
testcase_28 AC 250 ms
84,420 KB
testcase_29 AC 249 ms
82,692 KB
testcase_30 AC 199 ms
87,164 KB
testcase_31 AC 198 ms
82,792 KB
testcase_32 AC 451 ms
106,844 KB
testcase_33 AC 429 ms
105,312 KB
testcase_34 AC 276 ms
100,272 KB
testcase_35 AC 450 ms
98,408 KB
testcase_36 AC 486 ms
96,136 KB
testcase_37 AC 354 ms
94,224 KB
testcase_38 AC 415 ms
94,392 KB
testcase_39 AC 420 ms
95,576 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