結果

問題 No.1477 Lamps on Graph
ユーザー nephrologistnephrologist
提出日時 2021-04-16 20:33:45
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 252 ms / 2,000 ms
コード長 1,111 bytes
コンパイル時間 192 ms
コンパイル使用メモリ 82,384 KB
実行使用メモリ 110,196 KB
最終ジャッジ日時 2024-07-02 22:56:23
合計ジャッジ時間 7,974 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 44 ms
54,256 KB
testcase_01 AC 46 ms
54,116 KB
testcase_02 AC 46 ms
54,548 KB
testcase_03 AC 43 ms
54,428 KB
testcase_04 AC 42 ms
54,212 KB
testcase_05 AC 43 ms
54,676 KB
testcase_06 AC 43 ms
54,256 KB
testcase_07 AC 43 ms
54,208 KB
testcase_08 AC 44 ms
54,068 KB
testcase_09 AC 43 ms
55,048 KB
testcase_10 AC 42 ms
55,200 KB
testcase_11 AC 43 ms
55,852 KB
testcase_12 AC 172 ms
85,440 KB
testcase_13 AC 169 ms
87,032 KB
testcase_14 AC 194 ms
87,604 KB
testcase_15 AC 130 ms
79,560 KB
testcase_16 AC 117 ms
82,304 KB
testcase_17 AC 117 ms
82,524 KB
testcase_18 AC 165 ms
96,744 KB
testcase_19 AC 160 ms
86,976 KB
testcase_20 AC 119 ms
78,952 KB
testcase_21 AC 155 ms
93,984 KB
testcase_22 AC 113 ms
77,456 KB
testcase_23 AC 140 ms
79,988 KB
testcase_24 AC 211 ms
95,172 KB
testcase_25 AC 126 ms
80,124 KB
testcase_26 AC 199 ms
92,036 KB
testcase_27 AC 139 ms
81,412 KB
testcase_28 AC 161 ms
84,408 KB
testcase_29 AC 155 ms
82,460 KB
testcase_30 AC 108 ms
89,452 KB
testcase_31 AC 120 ms
83,780 KB
testcase_32 AC 166 ms
110,196 KB
testcase_33 AC 180 ms
105,972 KB
testcase_34 AC 141 ms
101,292 KB
testcase_35 AC 240 ms
98,600 KB
testcase_36 AC 244 ms
96,100 KB
testcase_37 AC 235 ms
94,404 KB
testcase_38 AC 237 ms
94,320 KB
testcase_39 AC 252 ms
95,852 KB
権限があれば一括ダウンロードができます

ソースコード

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]:
            deg[u] -= 1
            if deg[u] == 0:
                start.append(u)
    else:
        ans.append(v + 1)
        lamp[v] = 0
        finished[v] = 1
        for u in graph[v]:
            lamp[u] ^= 1
            deg[u] -= 1
            if deg[u] == 0:
                start.append(u)

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

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