結果

問題 No.1477 Lamps on Graph
ユーザー 👑 rin204rin204
提出日時 2022-01-18 03:58:35
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 574 ms / 2,000 ms
コード長 612 bytes
コンパイル時間 648 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 118,900 KB
最終ジャッジ日時 2024-05-02 19:15:21
合計ジャッジ時間 15,108 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 43 ms
51,712 KB
testcase_01 AC 43 ms
51,968 KB
testcase_02 AC 45 ms
51,584 KB
testcase_03 AC 45 ms
51,968 KB
testcase_04 AC 42 ms
51,840 KB
testcase_05 AC 42 ms
51,968 KB
testcase_06 AC 44 ms
51,840 KB
testcase_07 AC 43 ms
51,712 KB
testcase_08 AC 42 ms
51,712 KB
testcase_09 AC 43 ms
52,352 KB
testcase_10 AC 45 ms
51,840 KB
testcase_11 AC 45 ms
51,712 KB
testcase_12 AC 342 ms
87,048 KB
testcase_13 AC 321 ms
89,328 KB
testcase_14 AC 379 ms
90,680 KB
testcase_15 AC 209 ms
80,768 KB
testcase_16 AC 206 ms
82,048 KB
testcase_17 AC 207 ms
82,048 KB
testcase_18 AC 409 ms
99,204 KB
testcase_19 AC 325 ms
90,780 KB
testcase_20 AC 166 ms
79,744 KB
testcase_21 AC 358 ms
101,708 KB
testcase_22 AC 137 ms
77,824 KB
testcase_23 AC 233 ms
82,176 KB
testcase_24 AC 428 ms
99,540 KB
testcase_25 AC 196 ms
80,896 KB
testcase_26 AC 441 ms
95,064 KB
testcase_27 AC 232 ms
82,560 KB
testcase_28 AC 289 ms
85,644 KB
testcase_29 AC 252 ms
83,328 KB
testcase_30 AC 237 ms
89,920 KB
testcase_31 AC 216 ms
83,712 KB
testcase_32 AC 521 ms
118,900 KB
testcase_33 AC 499 ms
114,812 KB
testcase_34 AC 245 ms
118,648 KB
testcase_35 AC 562 ms
108,152 KB
testcase_36 AC 564 ms
107,384 KB
testcase_37 AC 519 ms
98,816 KB
testcase_38 AC 547 ms
98,432 KB
testcase_39 AC 574 ms
107,008 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