結果

問題 No.2431 Viral Hotel
ユーザー tassei903tassei903
提出日時 2023-08-16 07:44:04
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 411 ms / 2,000 ms
コード長 1,043 bytes
コンパイル時間 413 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 97,576 KB
最終ジャッジ日時 2024-11-24 19:20:45
合計ジャッジ時間 12,478 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 319 ms
91,968 KB
testcase_01 AC 293 ms
90,180 KB
testcase_02 AC 322 ms
91,036 KB
testcase_03 AC 335 ms
93,852 KB
testcase_04 AC 313 ms
93,252 KB
testcase_05 AC 384 ms
95,872 KB
testcase_06 AC 93 ms
78,848 KB
testcase_07 AC 88 ms
78,720 KB
testcase_08 AC 89 ms
78,848 KB
testcase_09 AC 35 ms
52,480 KB
testcase_10 AC 35 ms
52,480 KB
testcase_11 AC 36 ms
52,608 KB
testcase_12 AC 411 ms
97,576 KB
testcase_13 AC 355 ms
92,872 KB
testcase_14 AC 252 ms
86,612 KB
testcase_15 AC 166 ms
80,128 KB
testcase_16 AC 248 ms
88,948 KB
testcase_17 AC 228 ms
84,212 KB
testcase_18 AC 363 ms
92,680 KB
testcase_19 AC 299 ms
89,164 KB
testcase_20 AC 193 ms
83,528 KB
testcase_21 AC 206 ms
81,436 KB
testcase_22 AC 290 ms
87,520 KB
testcase_23 AC 278 ms
87,140 KB
testcase_24 AC 224 ms
86,040 KB
testcase_25 AC 337 ms
91,316 KB
testcase_26 AC 267 ms
88,208 KB
testcase_27 AC 228 ms
87,008 KB
testcase_28 AC 262 ms
86,252 KB
testcase_29 AC 236 ms
84,872 KB
testcase_30 AC 253 ms
86,272 KB
testcase_31 AC 291 ms
90,036 KB
testcase_32 AC 194 ms
81,272 KB
testcase_33 AC 239 ms
85,340 KB
testcase_34 AC 122 ms
78,080 KB
testcase_35 AC 174 ms
80,776 KB
testcase_36 AC 344 ms
92,532 KB
testcase_37 AC 222 ms
87,524 KB
testcase_38 AC 188 ms
83,876 KB
testcase_39 AC 35 ms
52,864 KB
testcase_40 AC 36 ms
52,480 KB
testcase_41 AC 36 ms
52,608 KB
testcase_42 AC 35 ms
52,736 KB
testcase_43 AC 345 ms
95,960 KB
testcase_44 AC 295 ms
89,828 KB
testcase_45 AC 243 ms
85,896 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = lambda :sys.stdin.readline()[:-1]
ni = lambda :int(input())
na = lambda :list(map(int,input().split()))
yes = lambda :print("yes");Yes = lambda :print("Yes");YES = lambda : print("YES")
no = lambda :print("no");No = lambda :print("No");NO = lambda : print("NO")
#######################################################################
n, k, m, p = na()
g = [[]for i in range(n)]
inf = float("inf")
for _ in range(m):
    u,v = na()
    u-=1
    v-=1
    g[u].append(v)
    g[v].append(u)

s = [ni() for i in range(n)]
x = [ni()-1 for i in range(k)]

from heapq import *
hq = []
# 検疫されたか
f = [-1] * n
# いつ感染したか
d = [inf] * n
for i in range(k):
    heappush(hq, (s[x[i]], x[i]))
    d[x[i]] = 0
ans = 0
while hq:
    #print(hq,f,d)
    t, v = heappop(hq)
    if f[v] != -1 and f[v] < t:
        continue
    for u in g[v]:
        if d[u] == inf:
            d[u] = t
            heappush(hq, (t+s[u], u))
        elif t - d[u] < p and f[u] == -1:
            f[u] = t
            ans += 1

print(ans)
0