結果

問題 No.1477 Lamps on Graph
ユーザー flippergoflippergo
提出日時 2024-11-04 12:29:26
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 354 ms / 2,000 ms
コード長 895 bytes
コンパイル時間 443 ms
コンパイル使用メモリ 82,516 KB
実行使用メモリ 110,076 KB
最終ジャッジ日時 2024-11-04 12:29:38
合計ジャッジ時間 12,311 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 42 ms
55,180 KB
testcase_01 AC 41 ms
54,148 KB
testcase_02 AC 41 ms
54,400 KB
testcase_03 AC 41 ms
54,920 KB
testcase_04 AC 41 ms
54,268 KB
testcase_05 AC 42 ms
54,084 KB
testcase_06 AC 43 ms
54,008 KB
testcase_07 AC 41 ms
54,316 KB
testcase_08 AC 42 ms
53,876 KB
testcase_09 AC 42 ms
55,420 KB
testcase_10 AC 41 ms
55,132 KB
testcase_11 AC 41 ms
54,592 KB
testcase_12 AC 234 ms
91,804 KB
testcase_13 AC 220 ms
91,512 KB
testcase_14 AC 284 ms
93,728 KB
testcase_15 AC 174 ms
81,488 KB
testcase_16 AC 147 ms
85,948 KB
testcase_17 AC 145 ms
85,752 KB
testcase_18 AC 204 ms
105,488 KB
testcase_19 AC 204 ms
96,132 KB
testcase_20 AC 173 ms
80,240 KB
testcase_21 AC 183 ms
101,960 KB
testcase_22 AC 129 ms
78,376 KB
testcase_23 AC 195 ms
82,716 KB
testcase_24 AC 277 ms
98,520 KB
testcase_25 AC 162 ms
80,676 KB
testcase_26 AC 278 ms
101,908 KB
testcase_27 AC 185 ms
83,820 KB
testcase_28 AC 203 ms
91,580 KB
testcase_29 AC 191 ms
84,980 KB
testcase_30 AC 142 ms
91,796 KB
testcase_31 AC 171 ms
87,200 KB
testcase_32 AC 230 ms
110,076 KB
testcase_33 AC 227 ms
109,572 KB
testcase_34 AC 198 ms
109,560 KB
testcase_35 AC 354 ms
109,624 KB
testcase_36 AC 327 ms
109,468 KB
testcase_37 AC 319 ms
109,452 KB
testcase_38 AC 316 ms
109,988 KB
testcase_39 AC 353 ms
109,684 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import deque
N,M = map(int,input().split())
A = [0]+list(map(int,input().split()))
G = {i:[] for i in range(1,N+1)}
indeg = [0]*(N+1)
for _ in range(M):
    u,v = map(int,input().split())
    if A[u]>A[v]:
        G[v].append(u)
        indeg[u] += 1
    if A[u]<A[v]:
        G[u].append(v)
        indeg[v] += 1
K = int(input())
B = list(map(int,input().split()))
L = [0]*(N+1)
for i in range(K):
    L[B[i]] = 1
que = deque([])
for i in range(1,N+1):
    if indeg[i]==0:
        que.append(i)
ans = []
while que:
    x = que.popleft()
    if L[x]==1:
        flag = 1
    else:
        flag = 0
    if flag==1:
        ans.append(x)
        L[x] = 0
    for y in G[x]:
        indeg[y] -= 1
        if flag==1:
            L[y] = 1-L[y]
        if indeg[y]==0:
            que.append(y)
if sum(L)==0:
    print(len(ans))
    for a in ans:
        print(a)
else:
    print(-1)
0