結果

問題 No.1477 Lamps on Graph
ユーザー ygd.ygd.
提出日時 2021-04-16 20:33:07
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 435 ms / 2,000 ms
コード長 878 bytes
コンパイル時間 165 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 115,884 KB
最終ジャッジ日時 2024-07-02 22:55:45
合計ジャッジ時間 10,728 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 41 ms
52,096 KB
testcase_01 AC 38 ms
52,480 KB
testcase_02 AC 38 ms
52,480 KB
testcase_03 AC 35 ms
52,480 KB
testcase_04 AC 34 ms
52,480 KB
testcase_05 AC 35 ms
52,608 KB
testcase_06 AC 35 ms
51,968 KB
testcase_07 AC 40 ms
52,480 KB
testcase_08 AC 42 ms
52,096 KB
testcase_09 AC 42 ms
52,608 KB
testcase_10 AC 41 ms
52,608 KB
testcase_11 AC 41 ms
52,480 KB
testcase_12 AC 291 ms
86,952 KB
testcase_13 AC 280 ms
92,120 KB
testcase_14 AC 317 ms
90,752 KB
testcase_15 AC 185 ms
81,152 KB
testcase_16 AC 152 ms
82,176 KB
testcase_17 AC 158 ms
82,176 KB
testcase_18 AC 274 ms
97,928 KB
testcase_19 AC 261 ms
87,856 KB
testcase_20 AC 186 ms
80,688 KB
testcase_21 AC 255 ms
92,484 KB
testcase_22 AC 149 ms
79,236 KB
testcase_23 AC 206 ms
82,748 KB
testcase_24 AC 389 ms
95,660 KB
testcase_25 AC 202 ms
80,592 KB
testcase_26 AC 356 ms
94,236 KB
testcase_27 AC 210 ms
82,756 KB
testcase_28 AC 208 ms
84,548 KB
testcase_29 AC 269 ms
84,332 KB
testcase_30 AC 168 ms
86,184 KB
testcase_31 AC 167 ms
82,688 KB
testcase_32 AC 399 ms
106,748 KB
testcase_33 AC 369 ms
106,348 KB
testcase_34 AC 256 ms
115,884 KB
testcase_35 AC 400 ms
100,004 KB
testcase_36 AC 418 ms
98,316 KB
testcase_37 AC 303 ms
94,080 KB
testcase_38 AC 342 ms
95,956 KB
testcase_39 AC 435 ms
97,824 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from heapq import heapify, heappop, heappush
N,M = map(int,input().split())
A = list(map(int,input().split()))
G = [[] for _ in range(N)]
for i in range(M):
    u,v = map(int,input().split())
    u-=1;v-=1
    G[u].append(v)
    G[v].append(u)
K = int(input())
B = list(map(int,input().split()))
B = [b-1 for b in B]
Status = [0]*N
HQ = []
for b in B:
    Status[b] = 1
for i in range(N):
    if Status[i] == 1:
        heappush(HQ,(A[i],i)) #value, index

ret = []
while HQ:
    val,idx = heappop(HQ)
    if Status[idx] == 0: #消灯していたらスキップ
        continue
    Status[idx] = 0
    ret.append(idx+1) #1index
    for adj in G[idx]:
        if A[adj] > A[idx]:
            if Status[adj] == 0:
                Status[adj] = 1
                heappush(HQ,(A[adj],adj))
            else:
                Status[adj] = 0
    
print(len(ret))
print(*ret,sep="\n")
0