結果

問題 No.1477 Lamps on Graph
ユーザー yuusanlondonyuusanlondon
提出日時 2021-04-16 20:24:28
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 563 ms / 2,000 ms
コード長 657 bytes
コンパイル時間 335 ms
コンパイル使用メモリ 82,332 KB
実行使用メモリ 114,252 KB
最終ジャッジ日時 2024-07-02 22:34:44
合計ジャッジ時間 11,853 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
52,884 KB
testcase_01 AC 40 ms
53,260 KB
testcase_02 AC 40 ms
54,312 KB
testcase_03 AC 41 ms
53,192 KB
testcase_04 AC 41 ms
53,496 KB
testcase_05 AC 41 ms
53,968 KB
testcase_06 AC 41 ms
53,500 KB
testcase_07 AC 42 ms
54,316 KB
testcase_08 AC 41 ms
54,268 KB
testcase_09 AC 40 ms
53,036 KB
testcase_10 AC 41 ms
53,680 KB
testcase_11 AC 42 ms
54,312 KB
testcase_12 AC 259 ms
90,184 KB
testcase_13 AC 252 ms
91,908 KB
testcase_14 AC 274 ms
92,472 KB
testcase_15 AC 143 ms
81,856 KB
testcase_16 AC 173 ms
84,380 KB
testcase_17 AC 164 ms
84,608 KB
testcase_18 AC 355 ms
101,780 KB
testcase_19 AC 269 ms
93,404 KB
testcase_20 AC 119 ms
79,376 KB
testcase_21 AC 308 ms
97,948 KB
testcase_22 AC 92 ms
78,176 KB
testcase_23 AC 160 ms
82,868 KB
testcase_24 AC 338 ms
97,676 KB
testcase_25 AC 135 ms
80,764 KB
testcase_26 AC 361 ms
99,524 KB
testcase_27 AC 168 ms
83,708 KB
testcase_28 AC 226 ms
89,384 KB
testcase_29 AC 195 ms
84,628 KB
testcase_30 AC 203 ms
93,160 KB
testcase_31 AC 182 ms
86,352 KB
testcase_32 AC 414 ms
113,696 KB
testcase_33 AC 407 ms
113,620 KB
testcase_34 AC 180 ms
114,252 KB
testcase_35 AC 472 ms
108,360 KB
testcase_36 AC 472 ms
106,524 KB
testcase_37 AC 429 ms
105,132 KB
testcase_38 AC 559 ms
104,868 KB
testcase_39 AC 563 ms
105,852 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import os,io,heapq
input=io.BytesIO(os.read(0,os.fstat(0).st_size)).readline
n,m=map(int,input().split())
a=list(map(int,input().split()))
graph=[]
for i in range(n):
  graph.append([])
for i in range(m):
  c,d=map(int,input().split())
  graph[c-1].append(d-1)
  graph[d-1].append(c-1)
k=int(input())
b=list(map(int,input().split()))
queue=[]
for i in range(n):
  queue.append((a[i],i+1))
queue.sort()
ans=[]
lights=[0]*n
for i in range(k):
  lights[b[i]-1]=1
for i in range(n):
  val,pos=queue[i]
  if lights[pos-1]==1:
    ans.append(pos)
    for j in graph[pos-1]:
      if a[j]>val:
        lights[j]=1-lights[j]
print(len(ans))
for i in ans:
  print(i)
0