結果

問題 No.1477 Lamps on Graph
ユーザー nephrologistnephrologist
提出日時 2021-04-16 20:32:07
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 1,105 bytes
コンパイル時間 186 ms
コンパイル使用メモリ 82,364 KB
実行使用メモリ 855,948 KB
最終ジャッジ日時 2024-07-02 22:53:51
合計ジャッジ時間 11,673 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 45 ms
54,400 KB
testcase_01 AC 49 ms
53,888 KB
testcase_02 AC 46 ms
53,504 KB
testcase_03 AC 45 ms
54,400 KB
testcase_04 AC 46 ms
54,016 KB
testcase_05 AC 46 ms
53,760 KB
testcase_06 AC 45 ms
54,144 KB
testcase_07 AC 45 ms
53,760 KB
testcase_08 AC 46 ms
53,632 KB
testcase_09 WA -
testcase_10 AC 45 ms
53,504 KB
testcase_11 AC 45 ms
53,760 KB
testcase_12 WA -
testcase_13 WA -
testcase_14 WA -
testcase_15 WA -
testcase_16 WA -
testcase_17 WA -
testcase_18 WA -
testcase_19 WA -
testcase_20 WA -
testcase_21 WA -
testcase_22 WA -
testcase_23 WA -
testcase_24 WA -
testcase_25 WA -
testcase_26 WA -
testcase_27 WA -
testcase_28 WA -
testcase_29 WA -
testcase_30 AC 118 ms
89,448 KB
testcase_31 WA -
testcase_32 MLE -
testcase_33 -- -
testcase_34 -- -
testcase_35 -- -
testcase_36 -- -
testcase_37 -- -
testcase_38 -- -
testcase_39 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
from collections import deque

input = sys.stdin.buffer.readline

n, m = map(int, input().split())
A = list(map(int, input().split()))
graph = [[] for _ in range(n)]
deg = [0] * n
for _ in range(m):
    a, b = map(int, input().split())
    a, b = a - 1, b - 1
    if A[b] > A[a]:
        graph[a].append(b)
        deg[b] += 1
    if A[a] > A[b]:
        graph[b].append(a)
        deg[a] += 1
k = int(input())
B = list(map(int, input().split()))


finished = [0] * n
lamp = [0] * n
for b in B:
    lamp[b - 1] = 1

start = deque()

for i in range(n):
    if deg[i] == 0:
        start.append(i)

ans = []

while start:
    v = start.popleft()
    finished[v] = 1
    if lamp[v] == 0:
        for u in graph[v]:
            if finished[u]:
                continue
            start.append(u)
    else:
        ans.append(v + 1)
        lamp[v] = 0
        finished[v] = 1
        for u in graph[v]:
            lamp[u] ^= 1
            if finished[u]:
                continue
            start.append(u)

if sum(lamp) > 0:
    print(-1)
    exit()

print(len(ans))
for a in ans:
    print(a)
0