結果

問題 No.2431 Viral Hotel
ユーザー 👑 SPD_9X2SPD_9X2
提出日時 2023-08-19 03:45:58
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 504 ms / 2,000 ms
コード長 1,181 bytes
コンパイル時間 305 ms
コンパイル使用メモリ 81,972 KB
実行使用メモリ 97,368 KB
最終ジャッジ日時 2024-11-28 17:11:35
合計ジャッジ時間 14,724 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 373 ms
91,980 KB
testcase_01 AC 347 ms
90,468 KB
testcase_02 AC 379 ms
90,656 KB
testcase_03 AC 411 ms
94,128 KB
testcase_04 AC 379 ms
93,952 KB
testcase_05 AC 480 ms
96,152 KB
testcase_06 AC 84 ms
77,532 KB
testcase_07 AC 82 ms
77,268 KB
testcase_08 AC 83 ms
77,452 KB
testcase_09 AC 40 ms
53,032 KB
testcase_10 AC 39 ms
53,288 KB
testcase_11 AC 39 ms
53,288 KB
testcase_12 AC 504 ms
97,368 KB
testcase_13 AC 423 ms
93,572 KB
testcase_14 AC 318 ms
86,564 KB
testcase_15 AC 191 ms
79,944 KB
testcase_16 AC 310 ms
88,624 KB
testcase_17 AC 277 ms
84,044 KB
testcase_18 AC 428 ms
91,824 KB
testcase_19 AC 375 ms
89,112 KB
testcase_20 AC 225 ms
83,992 KB
testcase_21 AC 247 ms
81,968 KB
testcase_22 AC 349 ms
87,608 KB
testcase_23 AC 342 ms
88,360 KB
testcase_24 AC 275 ms
86,032 KB
testcase_25 AC 409 ms
92,496 KB
testcase_26 AC 324 ms
88,584 KB
testcase_27 AC 277 ms
86,956 KB
testcase_28 AC 314 ms
85,824 KB
testcase_29 AC 278 ms
85,160 KB
testcase_30 AC 307 ms
85,944 KB
testcase_31 AC 362 ms
90,164 KB
testcase_32 AC 230 ms
81,264 KB
testcase_33 AC 283 ms
84,988 KB
testcase_34 AC 133 ms
78,236 KB
testcase_35 AC 208 ms
81,460 KB
testcase_36 AC 433 ms
92,056 KB
testcase_37 AC 271 ms
86,916 KB
testcase_38 AC 219 ms
83,984 KB
testcase_39 AC 40 ms
54,088 KB
testcase_40 AC 40 ms
53,496 KB
testcase_41 AC 40 ms
52,728 KB
testcase_42 AC 39 ms
53,020 KB
testcase_43 AC 422 ms
96,292 KB
testcase_44 AC 354 ms
88,840 KB
testcase_45 AC 284 ms
86,044 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

"""

最短経路かな

他の人に感染させるタイミング昇順に見ればいい?

"""

import heapq
import sys
from sys import stdin

N,K,M,P = map(int,stdin.readline().split())

lis = [ [] for i in range(N) ]

for i in range(M):

    u,v = map(int,stdin.readline().split())
    u -= 1
    v -= 1

    lis[u].append(v)
    lis[v].append(u)

s = [int(stdin.readline()) for i in range(N)]

q = []
d = [float("inf")] * N
state = [0] * N

# 0=未感染
# 1=観戦
# 2=検疫

for i in range(K):

    x = int(stdin.readline())-1
    d[x] = 0
    state[x] = 1
    heapq.heappush(q , (d[x]+s[x] , x) )

ans = 0
second_time = [-1] * N

while q:

    itime,v = heapq.heappop(q)
    if itime != d[v] + s[v]:
        continue

    if state[v] == 2 and second_time[v] < itime:
        continue

    
    for nex in lis[v]:

        if d[nex] > d[v] + s[v]:
            d[nex] = d[v] + s[v]
            state[nex] = 1
            heapq.heappush( q , (d[nex]+s[nex] , nex) )

        elif state[nex] == 1 and d[nex] + P > d[v]+s[v]:
            state[nex] = 2
            second_time[nex] = d[v]+s[v]

ans = 0
for i in range(N):
    if state[i] == 2:
        ans += 1

print (ans)
0