結果

問題 No.2431 Viral Hotel
ユーザー bortikbortik
提出日時 2023-08-15 04:21:46
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 1,247 ms / 2,000 ms
コード長 829 bytes
コンパイル時間 380 ms
コンパイル使用メモリ 12,800 KB
実行使用メモリ 41,984 KB
最終ジャッジ日時 2024-11-23 12:27:34
合計ジャッジ時間 26,804 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 937 ms
33,664 KB
testcase_01 AC 781 ms
29,696 KB
testcase_02 AC 814 ms
30,720 KB
testcase_03 AC 917 ms
31,616 KB
testcase_04 AC 980 ms
35,072 KB
testcase_05 AC 1,101 ms
36,480 KB
testcase_06 AC 356 ms
15,488 KB
testcase_07 AC 364 ms
15,616 KB
testcase_08 AC 371 ms
15,616 KB
testcase_09 AC 29 ms
10,880 KB
testcase_10 AC 28 ms
10,880 KB
testcase_11 AC 28 ms
10,880 KB
testcase_12 AC 1,247 ms
41,984 KB
testcase_13 AC 936 ms
34,176 KB
testcase_14 AC 489 ms
23,680 KB
testcase_15 AC 210 ms
15,488 KB
testcase_16 AC 661 ms
28,544 KB
testcase_17 AC 406 ms
20,480 KB
testcase_18 AC 960 ms
34,560 KB
testcase_19 AC 635 ms
27,904 KB
testcase_20 AC 314 ms
19,840 KB
testcase_21 AC 252 ms
17,280 KB
testcase_22 AC 610 ms
25,728 KB
testcase_23 AC 642 ms
26,112 KB
testcase_24 AC 417 ms
22,784 KB
testcase_25 AC 818 ms
31,488 KB
testcase_26 AC 545 ms
25,856 KB
testcase_27 AC 587 ms
25,344 KB
testcase_28 AC 475 ms
23,040 KB
testcase_29 AC 478 ms
22,400 KB
testcase_30 AC 581 ms
24,576 KB
testcase_31 AC 733 ms
29,312 KB
testcase_32 AC 253 ms
16,768 KB
testcase_33 AC 468 ms
22,144 KB
testcase_34 AC 74 ms
12,544 KB
testcase_35 AC 175 ms
15,104 KB
testcase_36 AC 825 ms
31,872 KB
testcase_37 AC 590 ms
25,728 KB
testcase_38 AC 311 ms
20,352 KB
testcase_39 AC 29 ms
10,880 KB
testcase_40 AC 28 ms
10,880 KB
testcase_41 AC 29 ms
10,880 KB
testcase_42 AC 29 ms
10,880 KB
testcase_43 AC 1,083 ms
38,272 KB
testcase_44 AC 679 ms
28,672 KB
testcase_45 AC 484 ms
23,424 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import heapq

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

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

for i in range(M):
    u,v = map(int, input().split())
    u -= 1
    v -= 1
    adj[u].append(v)
    adj[v].append(u)

s = [int(input()) for _ in range(N)]

infected = [-1 for _ in range(N)]

todo = []
heapq.heapify(todo)

for i in range(K):
    x = int(input())
    x -= 1
    infected[x] = 0
    heapq.heappush(todo, (s[x], x))

quar = [-1 for _ in range(N)]
answer = 0

while todo:
    x = heapq.heappop(todo)
    if quar[x[1]] != -1 and quar[x[1]] < x[0]: continue
    for u in adj[x[1]]:
        if infected[u] == -1:
            infected[u] = x[0]
            heapq.heappush(todo, (x[0]+s[u], u))
        else:
            if infected[u] + P > x[0] and quar[u] == -1:
                quar[u] = x[0]
                answer += 1

print(answer)
0