結果

問題 No.1477 Lamps on Graph
ユーザー shigeokushigeoku
提出日時 2021-04-16 21:45:29
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 534 ms / 2,000 ms
コード長 669 bytes
コンパイル時間 160 ms
コンパイル使用メモリ 81,788 KB
実行使用メモリ 120,388 KB
最終ジャッジ日時 2024-07-03 01:13:31
合計ジャッジ時間 12,429 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
51,712 KB
testcase_01 AC 39 ms
51,712 KB
testcase_02 AC 38 ms
51,328 KB
testcase_03 AC 39 ms
51,712 KB
testcase_04 AC 38 ms
51,584 KB
testcase_05 AC 39 ms
51,840 KB
testcase_06 AC 38 ms
51,840 KB
testcase_07 AC 38 ms
51,712 KB
testcase_08 AC 39 ms
51,712 KB
testcase_09 AC 39 ms
51,456 KB
testcase_10 AC 37 ms
51,840 KB
testcase_11 AC 38 ms
51,328 KB
testcase_12 AC 307 ms
93,912 KB
testcase_13 AC 288 ms
93,364 KB
testcase_14 AC 348 ms
97,368 KB
testcase_15 AC 184 ms
83,712 KB
testcase_16 AC 195 ms
82,944 KB
testcase_17 AC 184 ms
80,384 KB
testcase_18 AC 392 ms
100,320 KB
testcase_19 AC 304 ms
92,876 KB
testcase_20 AC 153 ms
82,352 KB
testcase_21 AC 328 ms
93,204 KB
testcase_22 AC 133 ms
81,128 KB
testcase_23 AC 223 ms
88,640 KB
testcase_24 AC 398 ms
103,112 KB
testcase_25 AC 180 ms
84,392 KB
testcase_26 AC 412 ms
99,920 KB
testcase_27 AC 209 ms
84,372 KB
testcase_28 AC 270 ms
89,384 KB
testcase_29 AC 240 ms
88,308 KB
testcase_30 AC 210 ms
85,004 KB
testcase_31 AC 200 ms
83,712 KB
testcase_32 AC 497 ms
120,388 KB
testcase_33 AC 482 ms
117,548 KB
testcase_34 AC 255 ms
115,132 KB
testcase_35 AC 526 ms
108,840 KB
testcase_36 AC 533 ms
108,612 KB
testcase_37 AC 534 ms
105,716 KB
testcase_38 AC 515 ms
106,416 KB
testcase_39 AC 527 ms
108,356 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N, M = map(int, input().split())
An = list(map(int, input().split()))
UV = [list(map(int, input().split())) for _ in range(M)]
K = int(input())
Bn = list(map(int, input().split()))

An_s = []
for i, A in enumerate(An, 1):
    An_s.append((A, i))
An_s.sort()
graph = [[] for _ in range(N+1)]
for U, V in UV:
    graph[U].append(V)
    graph[V].append(U)

light = [False] * (N+1)
for B in Bn:
    light[B] = True
ans = []
for v, i in An_s:
    if not light[i]:
        continue
    ans.append(i)
    light[i] = not light[i]
    for g in graph[i]:
        if An[g-1] <= v:
            continue
        light[g] = not light[g]

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