結果

問題 No.1477 Lamps on Graph
ユーザー ShirotsumeShirotsume
提出日時 2023-02-17 21:17:34
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 466 ms / 2,000 ms
コード長 1,416 bytes
コンパイル時間 151 ms
コンパイル使用メモリ 81,888 KB
実行使用メモリ 113,840 KB
最終ジャッジ日時 2024-07-19 12:18:54
合計ジャッジ時間 13,025 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 44 ms
55,060 KB
testcase_01 AC 41 ms
54,628 KB
testcase_02 AC 43 ms
56,000 KB
testcase_03 AC 41 ms
56,308 KB
testcase_04 AC 40 ms
55,456 KB
testcase_05 AC 41 ms
54,748 KB
testcase_06 AC 41 ms
54,512 KB
testcase_07 AC 40 ms
54,928 KB
testcase_08 AC 41 ms
55,664 KB
testcase_09 AC 41 ms
55,648 KB
testcase_10 AC 40 ms
54,908 KB
testcase_11 AC 40 ms
55,012 KB
testcase_12 AC 272 ms
86,104 KB
testcase_13 AC 262 ms
88,656 KB
testcase_14 AC 351 ms
88,980 KB
testcase_15 AC 187 ms
81,436 KB
testcase_16 AC 170 ms
82,620 KB
testcase_17 AC 167 ms
82,264 KB
testcase_18 AC 280 ms
94,644 KB
testcase_19 AC 296 ms
87,804 KB
testcase_20 AC 179 ms
80,020 KB
testcase_21 AC 249 ms
92,648 KB
testcase_22 AC 148 ms
78,516 KB
testcase_23 AC 218 ms
83,132 KB
testcase_24 AC 418 ms
94,720 KB
testcase_25 AC 197 ms
81,816 KB
testcase_26 AC 346 ms
93,732 KB
testcase_27 AC 178 ms
82,548 KB
testcase_28 AC 212 ms
84,468 KB
testcase_29 AC 241 ms
83,864 KB
testcase_30 AC 179 ms
87,784 KB
testcase_31 AC 169 ms
83,148 KB
testcase_32 AC 393 ms
107,196 KB
testcase_33 AC 391 ms
106,924 KB
testcase_34 AC 243 ms
113,840 KB
testcase_35 AC 466 ms
99,436 KB
testcase_36 AC 461 ms
97,396 KB
testcase_37 AC 297 ms
94,028 KB
testcase_38 AC 371 ms
94,560 KB
testcase_39 AC 400 ms
96,876 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
from collections import deque, Counter
input = lambda: sys.stdin.readline().rstrip()
ii = lambda: int(input())
mi = lambda: map(int, input().split())
li = lambda: list(mi())
inf = 2 ** 63 - 1
mod = 998244353

import heapq
class Heap():
    def __init__(self, maxi = False):
        self.sum = 0
        self.al = []
        self.maxi = maxi
        self.len = 0

    def __len__(self):
        return len(self.al)

    def add(self, x):
        if self.maxi:
            heapq.heappush(self.al, -x)
        else:
            heapq.heappush(self.al, x)
    
    def pop(self):
        if self.maxi:
            now = heapq.heappop(self.al)
            return -now
        else:
            now = heapq.heappop(self.al)
            return now

    def top(self):
        now = self.pop()
        self.add(now)
        return now

n, m = mi()
a = li()

graph = [[] for _ in range(n)]

for _ in range(m):
    u, v = mi()
    u -= 1; v -= 1
    graph[u].append(v)
    graph[v].append(u)

k = li()
b = li()
H = Heap()
color = [0] * n
for v in b:
    color[v - 1] = 1
    H.add((a[v - 1], v - 1))
ans = []
while H:
    nowa, now = H.pop()
    if color[now] == 0:
        continue
    color[now] = 0
    ans.append(now + 1)
    for to in graph[now]:
        if a[now] < a[to]:
            color[to] ^= 1
            if color[to] == 1:
                H.add((a[to], to))

print(len(ans))
for v in ans:
    print(v)
0