結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
61,812 KB
testcase_01 AC 39 ms
53,904 KB
testcase_02 AC 40 ms
54,420 KB
testcase_03 WA -
testcase_04 AC 40 ms
54,104 KB
testcase_05 WA -
testcase_06 WA -
testcase_07 AC 41 ms
54,060 KB
testcase_08 AC 40 ms
54,304 KB
testcase_09 WA -
testcase_10 WA -
testcase_11 AC 42 ms
54,532 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 TLE -
testcase_23 WA -
testcase_24 WA -
testcase_25 WA -
testcase_26 WA -
testcase_27 WA -
testcase_28 WA -
testcase_29 WA -
testcase_30 WA -
testcase_31 WA -
testcase_32 TLE -
testcase_33 TLE -
testcase_34 AC 248 ms
136,464 KB
testcase_35 WA -
testcase_36 WA -
testcase_37 WA -
testcase_38 WA -
testcase_39 MLE -
権限があれば一括ダウンロードができます

ソースコード

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