結果

問題 No.1477 Lamps on Graph
ユーザー NatsubiSoganNatsubiSogan
提出日時 2021-04-16 20:31:48
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 541 ms / 2,000 ms
コード長 558 bytes
コンパイル時間 175 ms
コンパイル使用メモリ 82,444 KB
実行使用メモリ 126,972 KB
最終ジャッジ日時 2024-07-02 22:52:19
合計ジャッジ時間 12,285 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 41 ms
51,712 KB
testcase_01 AC 42 ms
52,224 KB
testcase_02 AC 41 ms
52,224 KB
testcase_03 AC 41 ms
51,968 KB
testcase_04 AC 41 ms
51,968 KB
testcase_05 AC 41 ms
52,352 KB
testcase_06 AC 41 ms
52,224 KB
testcase_07 AC 41 ms
51,712 KB
testcase_08 AC 46 ms
51,712 KB
testcase_09 AC 42 ms
51,968 KB
testcase_10 AC 42 ms
52,096 KB
testcase_11 AC 41 ms
51,584 KB
testcase_12 AC 311 ms
87,664 KB
testcase_13 AC 314 ms
92,580 KB
testcase_14 AC 339 ms
92,636 KB
testcase_15 AC 187 ms
81,152 KB
testcase_16 AC 195 ms
81,408 KB
testcase_17 AC 192 ms
81,780 KB
testcase_18 AC 397 ms
110,860 KB
testcase_19 AC 312 ms
91,576 KB
testcase_20 AC 158 ms
79,580 KB
testcase_21 AC 347 ms
104,828 KB
testcase_22 AC 135 ms
77,824 KB
testcase_23 AC 230 ms
82,432 KB
testcase_24 AC 425 ms
104,496 KB
testcase_25 AC 184 ms
81,664 KB
testcase_26 AC 416 ms
100,212 KB
testcase_27 AC 217 ms
81,920 KB
testcase_28 AC 276 ms
84,688 KB
testcase_29 AC 241 ms
84,736 KB
testcase_30 AC 231 ms
92,468 KB
testcase_31 AC 209 ms
84,544 KB
testcase_32 AC 494 ms
123,840 KB
testcase_33 AC 477 ms
119,612 KB
testcase_34 AC 249 ms
126,972 KB
testcase_35 AC 539 ms
115,132 KB
testcase_36 AC 541 ms
111,548 KB
testcase_37 AC 496 ms
97,408 KB
testcase_38 AC 519 ms
100,492 KB
testcase_39 AC 537 ms
111,876 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n, m = map(int, input().split())
A = list(map(int, input().split()))
A2 = [(A[i], i) for i in range(n)]
A2.sort()
G = [[] for _ in range(n)]
for _ in range(m):
    u, v = map(int, input().split())
    G[u - 1].append(v - 1)
    G[v - 1].append(u - 1)
k = int(input())
B = set(map(int, input().split()))
onoff = [0] * n
for i in B:
    onoff[i - 1] = 1
ans = []
for a, i in A2:
    if onoff[i]:
        ans.append(i + 1)
        onoff[i] ^= 1
        for v in G[i]:
            if a < A[v]: 
                onoff[v] ^= 1
print(len(ans))
print(*ans, sep="\n")
0