結果

問題 No.1477 Lamps on Graph
ユーザー timitimi
提出日時 2023-01-05 09:04:49
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 321 ms / 2,000 ms
コード長 844 bytes
コンパイル時間 274 ms
コンパイル使用メモリ 82,400 KB
実行使用メモリ 114,348 KB
最終ジャッジ日時 2024-05-06 14:49:25
合計ジャッジ時間 11,766 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 44 ms
53,760 KB
testcase_01 AC 41 ms
53,888 KB
testcase_02 AC 45 ms
53,888 KB
testcase_03 AC 45 ms
54,144 KB
testcase_04 AC 41 ms
53,888 KB
testcase_05 AC 42 ms
53,632 KB
testcase_06 AC 42 ms
53,888 KB
testcase_07 AC 44 ms
53,888 KB
testcase_08 AC 42 ms
53,888 KB
testcase_09 AC 42 ms
53,888 KB
testcase_10 AC 45 ms
54,016 KB
testcase_11 AC 42 ms
53,872 KB
testcase_12 AC 225 ms
87,928 KB
testcase_13 AC 213 ms
91,176 KB
testcase_14 AC 263 ms
89,976 KB
testcase_15 AC 172 ms
80,520 KB
testcase_16 AC 152 ms
82,560 KB
testcase_17 AC 144 ms
82,308 KB
testcase_18 AC 199 ms
103,708 KB
testcase_19 AC 202 ms
91,684 KB
testcase_20 AC 148 ms
79,104 KB
testcase_21 AC 187 ms
99,852 KB
testcase_22 AC 128 ms
78,032 KB
testcase_23 AC 197 ms
81,024 KB
testcase_24 AC 274 ms
97,540 KB
testcase_25 AC 161 ms
80,028 KB
testcase_26 AC 248 ms
96,944 KB
testcase_27 AC 176 ms
82,576 KB
testcase_28 AC 201 ms
86,604 KB
testcase_29 AC 183 ms
84,036 KB
testcase_30 AC 138 ms
90,884 KB
testcase_31 AC 147 ms
83,028 KB
testcase_32 AC 233 ms
114,348 KB
testcase_33 AC 231 ms
112,236 KB
testcase_34 AC 197 ms
110,576 KB
testcase_35 AC 315 ms
103,976 KB
testcase_36 AC 320 ms
105,152 KB
testcase_37 AC 297 ms
95,644 KB
testcase_38 AC 304 ms
98,648 KB
testcase_39 AC 321 ms
104,980 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N,M=map(int, input().split())
A=list(map(int, input().split()))
G=[[]for i in range(N)]
deg=[0]*N
for i in range(M):
  a,b=map(int, input().split())
  a-=1
  b-=1
  if A[a]<A[b]:
    G[a].append(b)
    deg[b]+=1
  if A[a]>A[b]:
    G[b].append(a)
    deg[a]+=1
V=N
# V:頂点数
# G[v] = [w, ...]:有向グラフ上の頂点vから到達できる頂点w
# deg[v]:頂点vに到達できる頂点の数
from collections import deque
ans = list(v for v in range(V) if deg[v] == 0)
deq = deque(ans)
used = [0] * V
while deq:
  v=deq.popleft()
  for t in G[v]:
    deg[t]-=1
    if deg[t]==0:
      deq.append(t)
      ans.append(t)

L=[0]*N
K=int(input())
B=list(map(int, input().split()))
for b in B:
  L[b-1]=1
F=[]
for i in ans:
  if L[i]==1:
    F.append(i+1)
    for nex in G[i]:
      L[nex]=1-L[nex]
print(len(F))
for f in F:
  print(f)
    
0