結果

問題 No.1477 Lamps on Graph
ユーザー FromBooskaFromBooska
提出日時 2023-09-03 20:45:19
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 442 ms / 2,000 ms
コード長 832 bytes
コンパイル時間 628 ms
コンパイル使用メモリ 82,088 KB
実行使用メモリ 114,600 KB
最終ジャッジ日時 2024-06-13 01:30:54
合計ジャッジ時間 12,765 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
53,888 KB
testcase_01 AC 36 ms
54,144 KB
testcase_02 AC 35 ms
53,632 KB
testcase_03 AC 35 ms
53,504 KB
testcase_04 AC 35 ms
53,632 KB
testcase_05 AC 36 ms
53,760 KB
testcase_06 AC 36 ms
53,888 KB
testcase_07 AC 35 ms
53,760 KB
testcase_08 AC 37 ms
53,760 KB
testcase_09 AC 36 ms
54,016 KB
testcase_10 AC 36 ms
54,012 KB
testcase_11 AC 35 ms
53,632 KB
testcase_12 AC 256 ms
88,648 KB
testcase_13 AC 247 ms
93,008 KB
testcase_14 AC 289 ms
92,004 KB
testcase_15 AC 156 ms
81,024 KB
testcase_16 AC 173 ms
82,560 KB
testcase_17 AC 164 ms
82,560 KB
testcase_18 AC 324 ms
94,376 KB
testcase_19 AC 254 ms
91,516 KB
testcase_20 AC 133 ms
80,232 KB
testcase_21 AC 287 ms
97,084 KB
testcase_22 AC 105 ms
78,164 KB
testcase_23 AC 179 ms
82,688 KB
testcase_24 AC 334 ms
100,428 KB
testcase_25 AC 152 ms
81,296 KB
testcase_26 AC 339 ms
99,616 KB
testcase_27 AC 177 ms
82,828 KB
testcase_28 AC 228 ms
87,036 KB
testcase_29 AC 203 ms
84,224 KB
testcase_30 AC 194 ms
89,108 KB
testcase_31 AC 170 ms
83,840 KB
testcase_32 AC 396 ms
114,504 KB
testcase_33 AC 392 ms
114,020 KB
testcase_34 AC 195 ms
114,600 KB
testcase_35 AC 432 ms
107,796 KB
testcase_36 AC 442 ms
105,604 KB
testcase_37 AC 402 ms
98,564 KB
testcase_38 AC 427 ms
100,748 KB
testcase_39 AC 424 ms
104,980 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

# a昇順で頂点を見ていく
# スイッチついていたら消す、そのときに連鎖先もスイッチ押す

N, M = map(int, input().split())
A = list(map(int, input().split()))
edges = [[] for i in range(N)]
for i in range(M):
    u, v = map(int, input().split())
    edges[u-1].append(v-1)
    edges[v-1].append(u-1)
K = int(input())
B = list(map(int, input().split()))
switch = [0]*N
for b in B:
    switch[b-1] = 1

A_idx = []
for i in range(N):
    A_idx.append((A[i], i))
A_idx.sort()
    
from collections import deque
que = deque(A_idx)
#visited = [0]*N
ans_list = []
while que:
    ca, ci = que.popleft()
    if switch[ci] == 1:
        ans_list.append(ci)
        for nxt in edges[ci]:
            if A[nxt] > A[ci]:
                switch[nxt] ^= 1
print(len(ans_list))
for a in ans_list:
    print(a+1)




0