結果

問題 No.1477 Lamps on Graph
ユーザー 👑 rin204rin204
提出日時 2022-01-18 03:58:35
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 545 ms / 2,000 ms
コード長 612 bytes
コンパイル時間 278 ms
コンパイル使用メモリ 82,048 KB
実行使用メモリ 119,280 KB
最終ジャッジ日時 2024-11-23 13:13:49
合計ジャッジ時間 14,658 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
51,840 KB
testcase_01 AC 40 ms
52,096 KB
testcase_02 AC 39 ms
52,192 KB
testcase_03 AC 40 ms
51,840 KB
testcase_04 AC 38 ms
52,096 KB
testcase_05 AC 39 ms
51,968 KB
testcase_06 AC 40 ms
52,096 KB
testcase_07 AC 39 ms
51,840 KB
testcase_08 AC 39 ms
51,968 KB
testcase_09 AC 39 ms
52,224 KB
testcase_10 AC 38 ms
52,224 KB
testcase_11 AC 39 ms
52,224 KB
testcase_12 AC 307 ms
87,196 KB
testcase_13 AC 294 ms
89,784 KB
testcase_14 AC 354 ms
90,680 KB
testcase_15 AC 187 ms
81,104 KB
testcase_16 AC 196 ms
82,312 KB
testcase_17 AC 191 ms
82,236 KB
testcase_18 AC 392 ms
99,156 KB
testcase_19 AC 306 ms
90,644 KB
testcase_20 AC 151 ms
79,320 KB
testcase_21 AC 364 ms
101,716 KB
testcase_22 AC 129 ms
77,992 KB
testcase_23 AC 216 ms
82,432 KB
testcase_24 AC 408 ms
99,540 KB
testcase_25 AC 173 ms
81,024 KB
testcase_26 AC 427 ms
95,628 KB
testcase_27 AC 236 ms
82,128 KB
testcase_28 AC 279 ms
85,396 KB
testcase_29 AC 235 ms
83,200 KB
testcase_30 AC 220 ms
89,976 KB
testcase_31 AC 203 ms
84,096 KB
testcase_32 AC 498 ms
118,836 KB
testcase_33 AC 481 ms
115,064 KB
testcase_34 AC 231 ms
119,280 KB
testcase_35 AC 542 ms
108,408 KB
testcase_36 AC 545 ms
107,508 KB
testcase_37 AC 495 ms
98,392 KB
testcase_38 AC 513 ms
98,816 KB
testcase_39 AC 539 ms
106,696 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n, m = map(int, input().split())
A = list(map(int, input().split()))
C = [(a, i) for i, a in enumerate(A)]
C.sort()
edges = [[] for _ in range(n)]
for _ in range(m):
    u, v = map(int, input().split())
    u -= 1
    v -= 1
    edges[u].append(v)
    edges[v].append(u)
k = int(input())
B = list(map(int, input().split()))
on = [True] * n
for b in B: on[b - 1] = False
ans = []
for a, i in C:
    if on[i]:
        continue
    ans.append(i + 1)
    on[i] ^= True
    for j in edges[i]:
        if a < A[j]:
            on[j] ^= True
            
assert all(o for o in on)

print(len(ans))
print(*ans, sep="\n")
0