結果

問題 No.1477 Lamps on Graph
ユーザー lie_of_lillielie_of_lillie
提出日時 2021-05-12 20:23:22
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 983 ms / 2,000 ms
コード長 771 bytes
コンパイル時間 292 ms
コンパイル使用メモリ 12,800 KB
実行使用メモリ 70,796 KB
最終ジャッジ日時 2024-09-23 07:37:38
合計ジャッジ時間 18,742 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 30 ms
10,880 KB
testcase_01 AC 30 ms
10,752 KB
testcase_02 AC 30 ms
10,880 KB
testcase_03 AC 31 ms
11,008 KB
testcase_04 AC 30 ms
10,752 KB
testcase_05 AC 29 ms
10,880 KB
testcase_06 AC 29 ms
11,008 KB
testcase_07 AC 30 ms
10,752 KB
testcase_08 AC 29 ms
11,008 KB
testcase_09 AC 29 ms
11,008 KB
testcase_10 AC 30 ms
11,008 KB
testcase_11 AC 30 ms
10,880 KB
testcase_12 AC 581 ms
35,424 KB
testcase_13 AC 491 ms
36,172 KB
testcase_14 AC 700 ms
42,512 KB
testcase_15 AC 339 ms
23,396 KB
testcase_16 AC 188 ms
21,924 KB
testcase_17 AC 173 ms
22,340 KB
testcase_18 AC 503 ms
53,196 KB
testcase_19 AC 453 ms
37,592 KB
testcase_20 AC 223 ms
19,752 KB
testcase_21 AC 419 ms
47,196 KB
testcase_22 AC 187 ms
15,616 KB
testcase_23 AC 448 ms
25,860 KB
testcase_24 AC 737 ms
47,500 KB
testcase_25 AC 295 ms
22,408 KB
testcase_26 AC 680 ms
49,008 KB
testcase_27 AC 373 ms
26,196 KB
testcase_28 AC 413 ms
31,404 KB
testcase_29 AC 410 ms
28,884 KB
testcase_30 AC 260 ms
35,100 KB
testcase_31 AC 206 ms
27,256 KB
testcase_32 AC 948 ms
70,796 KB
testcase_33 AC 866 ms
59,784 KB
testcase_34 AC 757 ms
69,876 KB
testcase_35 AC 971 ms
59,852 KB
testcase_36 AC 968 ms
59,528 KB
testcase_37 AC 842 ms
53,680 KB
testcase_38 AC 895 ms
56,972 KB
testcase_39 AC 983 ms
59,156 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import collections

N, M = map(int, input().split())
A = list(map(lambda x: int(x) - 1, input().split()))

G = collections.defaultdict(set)

for _ in range(M):
    v0, v1 = map(lambda x: int(x) - 1, input().split())
    # 計算量の削減
    if A[v0] < A[v1]:
        G[v0].add(v1)
    else:
        G[v1].add(v0)

K = int(input())
B = set(map(lambda x: int(x) - 1, input().split()))

onoff = [int(gi in B) for gi in range(N)]
greedy = [(A[ai], ai) for ai in range(N)]
greedy.sort()

ans = []
for a, gi in greedy:
    if onoff[gi] != 1:
        continue
    onoff[gi] = 0
    ans.append(gi)
    for ri in G[gi]:
        if A[ri] > a:
            onoff[ri] ^= 1

if sum(onoff) > 0:
    print(-1)
else:
    print(len(ans))
    print(*map(lambda x: x + 1, ans), sep='\n')
0