結果

問題 No.1477 Lamps on Graph
ユーザー gr1msl3ygr1msl3y
提出日時 2021-05-03 19:48:04
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 667 ms / 2,000 ms
コード長 640 bytes
コンパイル時間 753 ms
コンパイル使用メモリ 82,432 KB
実行使用メモリ 157,384 KB
最終ジャッジ日時 2024-07-22 10:12:40
合計ジャッジ時間 15,667 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 46 ms
53,504 KB
testcase_01 AC 44 ms
53,888 KB
testcase_02 AC 47 ms
53,632 KB
testcase_03 AC 42 ms
53,632 KB
testcase_04 AC 43 ms
53,632 KB
testcase_05 AC 42 ms
53,632 KB
testcase_06 AC 42 ms
54,272 KB
testcase_07 AC 43 ms
53,760 KB
testcase_08 AC 43 ms
53,376 KB
testcase_09 AC 42 ms
53,632 KB
testcase_10 AC 43 ms
53,888 KB
testcase_11 AC 42 ms
53,248 KB
testcase_12 AC 372 ms
100,560 KB
testcase_13 AC 347 ms
104,956 KB
testcase_14 AC 414 ms
104,720 KB
testcase_15 AC 213 ms
85,120 KB
testcase_16 AC 208 ms
89,824 KB
testcase_17 AC 207 ms
88,960 KB
testcase_18 AC 466 ms
121,472 KB
testcase_19 AC 357 ms
104,420 KB
testcase_20 AC 172 ms
83,528 KB
testcase_21 AC 391 ms
110,784 KB
testcase_22 AC 137 ms
80,056 KB
testcase_23 AC 252 ms
87,424 KB
testcase_24 AC 498 ms
123,080 KB
testcase_25 AC 196 ms
84,532 KB
testcase_26 AC 498 ms
119,456 KB
testcase_27 AC 255 ms
88,832 KB
testcase_28 AC 311 ms
97,008 KB
testcase_29 AC 277 ms
92,548 KB
testcase_30 AC 252 ms
104,840 KB
testcase_31 AC 224 ms
91,360 KB
testcase_32 AC 595 ms
150,036 KB
testcase_33 AC 561 ms
149,744 KB
testcase_34 AC 295 ms
157,384 KB
testcase_35 AC 667 ms
139,932 KB
testcase_36 AC 664 ms
134,112 KB
testcase_37 AC 614 ms
124,316 KB
testcase_38 AC 622 ms
126,372 KB
testcase_39 AC 660 ms
133,912 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import defaultdict
N, M = map(int, input().split())
A = [0]+list(map(int, input().split()))
task = [[0, 0]]+[[A[i], i] for i in range(1, N+1)]
task.sort()
Edges = defaultdict(set)
for _ in range(M):
    u, v = map(int, input().split())
    Edges[u].add(v)
    Edges[v].add(u)
K = int(input())
B = set(map(int, input().split()))
state = [int(i in B) for i in range(N+1)]
ans = []

for a, v in task:
    if not state[v]:
        continue
    state[v] = 0
    ans.append(v)
    for e in Edges[v]:
        if A[e] > a:
            state[e] ^= 1

if sum(state):
    print(-1)
else:
    print(len(ans))
    print(*ans, sep='\n')
0