結果

問題 No.1477 Lamps on Graph
ユーザー FromBooskaFromBooska
提出日時 2023-03-09 22:08:17
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 267 ms / 2,000 ms
コード長 1,649 bytes
コンパイル時間 194 ms
コンパイル使用メモリ 82,372 KB
実行使用メモリ 116,528 KB
最終ジャッジ日時 2024-09-18 03:04:56
合計ジャッジ時間 8,168 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 42 ms
54,812 KB
testcase_01 AC 42 ms
54,712 KB
testcase_02 AC 42 ms
53,940 KB
testcase_03 AC 39 ms
55,248 KB
testcase_04 AC 40 ms
54,480 KB
testcase_05 AC 41 ms
53,928 KB
testcase_06 AC 40 ms
55,064 KB
testcase_07 AC 40 ms
54,612 KB
testcase_08 AC 39 ms
55,472 KB
testcase_09 AC 40 ms
54,540 KB
testcase_10 AC 40 ms
54,260 KB
testcase_11 AC 41 ms
54,632 KB
testcase_12 AC 207 ms
85,268 KB
testcase_13 AC 188 ms
89,552 KB
testcase_14 AC 220 ms
86,788 KB
testcase_15 AC 146 ms
80,156 KB
testcase_16 AC 130 ms
82,472 KB
testcase_17 AC 128 ms
82,344 KB
testcase_18 AC 165 ms
93,680 KB
testcase_19 AC 178 ms
88,160 KB
testcase_20 AC 132 ms
79,448 KB
testcase_21 AC 155 ms
91,840 KB
testcase_22 AC 110 ms
77,836 KB
testcase_23 AC 158 ms
80,856 KB
testcase_24 AC 221 ms
95,440 KB
testcase_25 AC 138 ms
79,568 KB
testcase_26 AC 216 ms
95,880 KB
testcase_27 AC 159 ms
81,840 KB
testcase_28 AC 173 ms
85,228 KB
testcase_29 AC 165 ms
82,248 KB
testcase_30 AC 114 ms
90,300 KB
testcase_31 AC 125 ms
83,272 KB
testcase_32 AC 192 ms
116,528 KB
testcase_33 AC 200 ms
111,884 KB
testcase_34 AC 177 ms
109,832 KB
testcase_35 AC 257 ms
98,952 KB
testcase_36 AC 255 ms
96,644 KB
testcase_37 AC 249 ms
95,780 KB
testcase_38 AC 248 ms
95,976 KB
testcase_39 AC 267 ms
96,680 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

# 整数の大小関係で有効グラフになる
# 各連結成分ごとに調べる、そのために入次数0を記録
# 連結成分でON=[0101]を調べる、連結成分の始めから見ていく
# switch使ったら記録
# BFS or DFSだろう
# 問題読み違えていた、ランプは次だけ変わる

N, M = map(int, input().split())
A = [0]+list(map(int, input().split()))
edges = [[] for i in range(N+1)]
inward = [0]*(N+1)
for i in range(M):
    u, v = map(int, input().split())
    if A[u] < A[v]:
        edges[u].append(v)
        inward[v] += 1
    elif A[u] > A[v]:
        edges[v].append(u)
        inward[u] += 1

K = int(input())
B = list(map(int, input().split()))


# その連結成分の始めからやらないと最小手順にならない
# ということは連結成分の最初を探す必要がある, degree check
# 問題読み違えていた、ランプは次だけ変わる

from collections import deque

onoff = [0]*(N+1)
for b in B:
    onoff[b] = 1
    
start = []
for i in range(1, N+1):
    if inward[i] == 0:
        start.append(i)

switch_list = []

ans = []    
while start:
    next_start = []
    for s in start:
        if onoff[s] == 1:
            # スイッチ押す
            onoff[s] = 0
            ans.append(s)
            for nxt in edges[s]:
                onoff[nxt] ^= 1
        for nxt in edges[s]:
            inward[nxt] -= 1
            # 入次数がゼロになれば、その頂点以前はすべて処理済みということ
            if inward[nxt] == 0:
                next_start.append(nxt)
    start = next_start
    
print(len(ans))
for a in ans:
    print(a)
0