結果

問題 No.1477 Lamps on Graph
ユーザー tobusakanatobusakana
提出日時 2022-11-27 14:42:11
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 276 ms / 2,000 ms
コード長 1,052 bytes
コンパイル時間 193 ms
コンパイル使用メモリ 82,068 KB
実行使用メモリ 115,248 KB
最終ジャッジ日時 2024-10-04 02:57:31
合計ジャッジ時間 8,520 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
52,884 KB
testcase_01 AC 42 ms
52,992 KB
testcase_02 AC 39 ms
52,528 KB
testcase_03 AC 37 ms
53,020 KB
testcase_04 AC 38 ms
53,316 KB
testcase_05 AC 39 ms
54,024 KB
testcase_06 AC 37 ms
53,268 KB
testcase_07 AC 38 ms
53,424 KB
testcase_08 AC 38 ms
52,384 KB
testcase_09 AC 39 ms
54,332 KB
testcase_10 AC 39 ms
53,488 KB
testcase_11 AC 39 ms
53,928 KB
testcase_12 AC 192 ms
84,540 KB
testcase_13 AC 181 ms
87,288 KB
testcase_14 AC 222 ms
86,224 KB
testcase_15 AC 135 ms
79,348 KB
testcase_16 AC 131 ms
82,236 KB
testcase_17 AC 127 ms
82,432 KB
testcase_18 AC 173 ms
98,156 KB
testcase_19 AC 183 ms
86,652 KB
testcase_20 AC 124 ms
78,408 KB
testcase_21 AC 160 ms
95,828 KB
testcase_22 AC 103 ms
77,148 KB
testcase_23 AC 160 ms
80,592 KB
testcase_24 AC 235 ms
92,660 KB
testcase_25 AC 136 ms
79,044 KB
testcase_26 AC 216 ms
94,176 KB
testcase_27 AC 143 ms
81,040 KB
testcase_28 AC 163 ms
84,384 KB
testcase_29 AC 165 ms
82,176 KB
testcase_30 AC 107 ms
86,988 KB
testcase_31 AC 124 ms
82,900 KB
testcase_32 AC 175 ms
115,248 KB
testcase_33 AC 174 ms
110,728 KB
testcase_34 AC 144 ms
103,988 KB
testcase_35 AC 269 ms
100,392 KB
testcase_36 AC 276 ms
97,932 KB
testcase_37 AC 257 ms
94,492 KB
testcase_38 AC 255 ms
94,960 KB
testcase_39 AC 276 ms
97,836 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
readline = sys.stdin.readline
N,M = map(int,readline().split())
A = list(map(int,readline().split()))
G = [[] for i in range(N)]
indegree = [0] * N
for _ in range(M):
    u,v = map(int,readline().split())
    u -= 1
    v -= 1
    if A[u] < A[v]:
        G[u].append(v)
        indegree[v] += 1
    if A[u] > A[v]:
        G[v].append(u)
        indegree[u] += 1
        
starts = []
for i in range(N):
    if indegree[i] == 0:
        starts.append(i)
        
K = int(readline())
B = list(map(int,readline().split()))
lamp_on = [False] * N
for b in B:
    lamp_on[b - 1] = True

ans = []    
while starts:
    next_starts = []
    for s in starts:
        if lamp_on[s]:
            lamp_on[s] = False
            ans.append(s)
            for child in G[s]:
                lamp_on[child] ^= True
        for child in G[s]:
            indegree[child] -= 1
            if indegree[child] == 0:
                next_starts.append(child)
    starts = next_starts
    
print(len(ans))
for a in ans:
    print(a + 1)
            
            
0