結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 43 ms
53,632 KB
testcase_01 AC 48 ms
53,760 KB
testcase_02 WA -
testcase_03 WA -
testcase_04 AC 45 ms
54,272 KB
testcase_05 WA -
testcase_06 AC 43 ms
53,504 KB
testcase_07 AC 43 ms
53,760 KB
testcase_08 AC 44 ms
53,760 KB
testcase_09 WA -
testcase_10 WA -
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 WA -
testcase_31 WA -
testcase_32 WA -
testcase_33 WA -
testcase_34 AC 142 ms
101,224 KB
testcase_35 WA -
testcase_36 WA -
testcase_37 WA -
testcase_38 WA -
testcase_39 WA -
権限があれば一括ダウンロードができます

ソースコード

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()
    if lamp[v] == 0:
        finished[v] = 1
        for u in graph[v]:
            if finished[u]:
                continue
            start.append(u)
    else:
        ans.append(v + 1)
        outflag = 0
        lamp[v] = 0
        finished[v] = 0
        for u in graph[v]:
            if lamp[u]:
                lamp[u] = 0
                if not finished[u]:
                    start.append(u)
                continue
            else:
                outflag = 1
                break
        if outflag:
            print(-1)
            exit()

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