結果

問題 No.1477 Lamps on Graph
ユーザー tktk_snsntktk_snsn
提出日時 2021-04-16 20:58:12
言語 Python3
(3.13.1 + numpy 2.2.1 + scipy 1.14.1)
結果
AC  
実行時間 629 ms / 2,000 ms
コード長 780 bytes
コンパイル時間 229 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 58,580 KB
最終ジャッジ日時 2024-07-02 23:42:09
合計ジャッジ時間 12,784 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 2
other AC * 38
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import defaultdict
import sys
input = sys.stdin.buffer.readline
sys.setrecursionlimit(10 ** 7)

N, M = map(int, input().split())
A = tuple(map(int, input().split()))
d = defaultdict(list)
for i, a in enumerate(A):
    d[a].append(i)

G = [[] for _ in range(N)]
for _ in range(M):
    a, b = map(int, input().split())
    a -= 1
    b -= 1
    G[a].append(b)
    G[b].append(a)

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

NG = [0] * N
ans = []
for a in sorted(set(A)):
    for i in d[a]:
        NG[i] = 1
    for s in d[a]:
        if not ON[s]:
            continue
        ans.append(s+1)
        for t in G[s]:
            if NG[t]:
                continue
            ON[t] ^= 1
print(len(ans))
print(*ans, sep="\n")
0