結果

問題 No.1477 Lamps on Graph
ユーザー FromBooskaFromBooska
提出日時 2023-09-03 20:55:53
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 248 ms / 2,000 ms
コード長 1,260 bytes
コンパイル時間 468 ms
コンパイル使用メモリ 82,036 KB
実行使用メモリ 110,192 KB
最終ジャッジ日時 2024-06-13 01:38:17
合計ジャッジ時間 7,932 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 35 ms
53,528 KB
testcase_01 AC 35 ms
54,080 KB
testcase_02 AC 35 ms
54,220 KB
testcase_03 AC 36 ms
55,768 KB
testcase_04 AC 35 ms
54,736 KB
testcase_05 AC 36 ms
54,876 KB
testcase_06 AC 36 ms
54,488 KB
testcase_07 AC 36 ms
54,312 KB
testcase_08 AC 37 ms
54,648 KB
testcase_09 AC 34 ms
55,428 KB
testcase_10 AC 36 ms
53,960 KB
testcase_11 AC 34 ms
54,936 KB
testcase_12 AC 173 ms
84,900 KB
testcase_13 AC 170 ms
89,152 KB
testcase_14 AC 194 ms
87,160 KB
testcase_15 AC 142 ms
80,000 KB
testcase_16 AC 118 ms
81,980 KB
testcase_17 AC 120 ms
82,388 KB
testcase_18 AC 163 ms
93,788 KB
testcase_19 AC 160 ms
87,052 KB
testcase_20 AC 122 ms
78,968 KB
testcase_21 AC 162 ms
92,116 KB
testcase_22 AC 109 ms
77,756 KB
testcase_23 AC 150 ms
80,424 KB
testcase_24 AC 212 ms
95,164 KB
testcase_25 AC 127 ms
79,536 KB
testcase_26 AC 193 ms
93,328 KB
testcase_27 AC 146 ms
81,180 KB
testcase_28 AC 159 ms
84,456 KB
testcase_29 AC 163 ms
82,436 KB
testcase_30 AC 114 ms
87,556 KB
testcase_31 AC 125 ms
82,844 KB
testcase_32 AC 195 ms
110,192 KB
testcase_33 AC 208 ms
106,868 KB
testcase_34 AC 172 ms
103,660 KB
testcase_35 AC 240 ms
98,036 KB
testcase_36 AC 248 ms
95,764 KB
testcase_37 AC 227 ms
94,480 KB
testcase_38 AC 230 ms
94,972 KB
testcase_39 AC 241 ms
95,636 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

# ACだがa条件で有向辺を張る、という前回の方針でやってみる
# 有向辺にすれば閉路はできない、Ai<Ajだから
# すると入次数が0のところからスタートすればいい

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

K = int(input())
B = list(map(int, input().split()))
switch = [0]*N
for b in B:
    switch[b-1] = 1

from collections import deque
que = deque()
for i in range(N):
    if inward[i] == 0:
        que.append(i)

ans_list = []
while que:
    current = que.popleft()
    if switch[current] == 1:
        ans_list.append(current)
        for nxt in edges[current]:
            switch[nxt] ^= 1
            inward[nxt] -= 1
            if inward[nxt] == 0:
                que.append(nxt)
    elif switch[current] == 0:
        for nxt in edges[current]:
            inward[nxt] -= 1
            if inward[nxt] == 0:
                que.append(nxt)        

print(len(ans_list))
for a in ans_list:
    print(a+1)
0