結果

問題 No.1477 Lamps on Graph
ユーザー zkouzkou
提出日時 2021-04-16 20:13:33
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 443 ms / 2,000 ms
コード長 598 bytes
コンパイル時間 331 ms
コンパイル使用メモリ 82,316 KB
実行使用メモリ 109,136 KB
最終ジャッジ日時 2024-07-02 22:08:36
合計ジャッジ時間 11,219 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 45 ms
51,840 KB
testcase_01 AC 47 ms
51,584 KB
testcase_02 AC 43 ms
51,328 KB
testcase_03 AC 47 ms
51,840 KB
testcase_04 AC 41 ms
51,840 KB
testcase_05 AC 42 ms
52,352 KB
testcase_06 AC 41 ms
52,096 KB
testcase_07 AC 41 ms
51,712 KB
testcase_08 AC 41 ms
51,968 KB
testcase_09 AC 43 ms
52,352 KB
testcase_10 AC 42 ms
51,968 KB
testcase_11 AC 42 ms
51,712 KB
testcase_12 AC 267 ms
87,880 KB
testcase_13 AC 262 ms
93,076 KB
testcase_14 AC 305 ms
92,832 KB
testcase_15 AC 182 ms
81,024 KB
testcase_16 AC 171 ms
82,944 KB
testcase_17 AC 174 ms
82,048 KB
testcase_18 AC 294 ms
98,592 KB
testcase_19 AC 252 ms
89,720 KB
testcase_20 AC 157 ms
78,592 KB
testcase_21 AC 268 ms
94,444 KB
testcase_22 AC 139 ms
78,080 KB
testcase_23 AC 218 ms
82,560 KB
testcase_24 AC 337 ms
101,340 KB
testcase_25 AC 173 ms
80,672 KB
testcase_26 AC 329 ms
99,104 KB
testcase_27 AC 203 ms
82,560 KB
testcase_28 AC 237 ms
86,456 KB
testcase_29 AC 220 ms
83,200 KB
testcase_30 AC 180 ms
90,720 KB
testcase_31 AC 179 ms
83,712 KB
testcase_32 AC 363 ms
108,668 KB
testcase_33 AC 348 ms
108,036 KB
testcase_34 AC 232 ms
109,136 KB
testcase_35 AC 422 ms
106,512 KB
testcase_36 AC 443 ms
106,200 KB
testcase_37 AC 379 ms
99,220 KB
testcase_38 AC 395 ms
100,632 KB
testcase_39 AC 426 ms
105,744 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N, M = map(int, input().split())
As = list(map(int, input().split()))
adj = [[] for _ in range(N)]
for _ in range(M):
    u, v = map(int, input().split())
    u -= 1
    v -= 1
    adj[u].append(v)
    adj[v].append(u)
K = int(input())
on = [False] * N
for B in map(int, input().split()):
    B -= 1
    on[B] = True

iAs = sorted(enumerate(As), key=lambda t: t[1])

answer = []
for i, A in iAs:
    if on[i] == True:
        answer.append(i)
        for nv in adj[i]:
            if As[nv] > As[i]:
                on[nv] = not on[nv]

print(len(answer))
print(*[a + 1 for a in answer], sep='\n')
0