結果

問題 No.1477 Lamps on Graph
ユーザー lloyzlloyz
提出日時 2023-08-10 00:05:47
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 786 bytes
コンパイル時間 305 ms
コンパイル使用メモリ 82,000 KB
実行使用メモリ 849,416 KB
最終ジャッジ日時 2024-04-27 18:11:01
合計ジャッジ時間 12,420 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 35 ms
55,908 KB
testcase_01 AC 35 ms
54,436 KB
testcase_02 AC 34 ms
54,848 KB
testcase_03 WA -
testcase_04 AC 42 ms
54,592 KB
testcase_05 WA -
testcase_06 WA -
testcase_07 AC 38 ms
55,580 KB
testcase_08 AC 38 ms
53,876 KB
testcase_09 WA -
testcase_10 WA -
testcase_11 AC 36 ms
53,592 KB
testcase_12 WA -
testcase_13 WA -
testcase_14 WA -
testcase_15 WA -
testcase_16 WA -
testcase_17 WA -
testcase_18 WA -
testcase_19 WA -
testcase_20 WA -
testcase_21 WA -
testcase_22 MLE -
testcase_23 -- -
testcase_24 -- -
testcase_25 -- -
testcase_26 -- -
testcase_27 -- -
testcase_28 -- -
testcase_29 -- -
testcase_30 -- -
testcase_31 -- -
testcase_32 -- -
testcase_33 -- -
testcase_34 -- -
testcase_35 -- -
testcase_36 -- -
testcase_37 -- -
testcase_38 -- -
testcase_39 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import defaultdict, deque

n, m = map(int, input().split())
A = list(map(int, input().split()))
IN = [0 for _ in range(n)]
G = defaultdict(list)
for _ in range(m):
    u, v = map(int, input().split())
    u -= 1
    v -= 1
    if A[u] > A[v]:
        G[v].append(u)
        IN[u] += 1
    elif A[u] < A[v]:
        G[u].append(v)
        IN[v] += 1
Que = deque([(i, 0) for i in range(n) if IN[i] == 0])
k = int(input())
B = set(map(int, input().split()))
ANS = []
while Que:
    idx, on = Que.popleft()
    if idx + 1 in B:
        if on == 0:
            ANS.append(idx + 1)
            on = 1
    else:
        if on == 1:
            ANS.append(idx + 1)
            on = 0
    for nidx in G[idx]:
        Que.append((nidx, on))
print(len(ANS))
print(*ANS, sep='\n')
0