結果

問題 No.1477 Lamps on Graph
ユーザー lie_of_lillielie_of_lillie
提出日時 2021-05-12 20:22:10
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 794 ms / 2,000 ms
コード長 576 bytes
コンパイル時間 247 ms
コンパイル使用メモリ 12,800 KB
実行使用メモリ 44,252 KB
最終ジャッジ日時 2024-09-23 07:35:01
合計ジャッジ時間 16,115 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 33 ms
10,496 KB
testcase_01 AC 31 ms
10,880 KB
testcase_02 AC 30 ms
10,624 KB
testcase_03 AC 29 ms
10,752 KB
testcase_04 AC 30 ms
10,624 KB
testcase_05 AC 30 ms
10,624 KB
testcase_06 AC 30 ms
10,752 KB
testcase_07 AC 29 ms
10,752 KB
testcase_08 AC 30 ms
10,624 KB
testcase_09 AC 29 ms
10,624 KB
testcase_10 AC 29 ms
10,752 KB
testcase_11 AC 29 ms
10,880 KB
testcase_12 AC 492 ms
26,608 KB
testcase_13 AC 425 ms
27,108 KB
testcase_14 AC 573 ms
28,972 KB
testcase_15 AC 297 ms
17,408 KB
testcase_16 AC 158 ms
20,148 KB
testcase_17 AC 149 ms
19,408 KB
testcase_18 AC 404 ms
38,036 KB
testcase_19 AC 379 ms
28,264 KB
testcase_20 AC 192 ms
15,744 KB
testcase_21 AC 350 ms
33,892 KB
testcase_22 AC 162 ms
12,928 KB
testcase_23 AC 381 ms
18,768 KB
testcase_24 AC 648 ms
33,932 KB
testcase_25 AC 263 ms
17,024 KB
testcase_26 AC 560 ms
36,056 KB
testcase_27 AC 325 ms
19,584 KB
testcase_28 AC 370 ms
24,892 KB
testcase_29 AC 343 ms
21,796 KB
testcase_30 AC 200 ms
25,164 KB
testcase_31 AC 168 ms
21,304 KB
testcase_32 AC 782 ms
44,252 KB
testcase_33 AC 729 ms
43,396 KB
testcase_34 AC 611 ms
40,624 KB
testcase_35 AC 794 ms
43,596 KB
testcase_36 AC 787 ms
43,048 KB
testcase_37 AC 703 ms
40,484 KB
testcase_38 AC 737 ms
41,380 KB
testcase_39 AC 789 ms
42,792 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N, M = map(int, input().split())
A = [int(s) for s in input().split()]

X = [[] for _ in range(N)]

for i in range(M):
    U, V = map(int, input().split())
    U -= 1
    V -= 1
    if A[U] < A[V]:
        X[U].append(V)
    if A[V] < A[U]:
        X[V].append(U)

K = int(input())
B = [int(s) for s in input().split()]

L = [False]*N

for i in B:
    L[i - 1] = True

F = sorted([(A[i], i) for i in range(N)])

Y = []

for _, i in F:
    if L[i]:
        Y.append(i+1)
        for j in X[i]:
            L[j] = not L[j]


print(len(Y))
for i in range(len(Y)):
    print(Y[i])
0