結果

問題 No.2431 Viral Hotel
ユーザー 0214sh70214sh7
提出日時 2023-08-14 20:30:36
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,699 ms / 2,000 ms
コード長 1,489 bytes
コンパイル時間 260 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 115,100 KB
最終ジャッジ日時 2024-11-23 12:26:24
合計ジャッジ時間 35,168 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1,215 ms
106,456 KB
testcase_01 AC 1,057 ms
101,768 KB
testcase_02 AC 1,053 ms
103,936 KB
testcase_03 AC 1,172 ms
109,120 KB
testcase_04 AC 1,213 ms
109,312 KB
testcase_05 AC 1,439 ms
111,068 KB
testcase_06 AC 178 ms
79,360 KB
testcase_07 AC 162 ms
79,232 KB
testcase_08 AC 157 ms
78,720 KB
testcase_09 AC 44 ms
52,608 KB
testcase_10 AC 44 ms
52,352 KB
testcase_11 AC 43 ms
52,736 KB
testcase_12 AC 1,699 ms
115,100 KB
testcase_13 AC 1,186 ms
107,612 KB
testcase_14 AC 702 ms
93,684 KB
testcase_15 AC 343 ms
82,688 KB
testcase_16 AC 1,038 ms
102,240 KB
testcase_17 AC 584 ms
89,600 KB
testcase_18 AC 1,293 ms
106,432 KB
testcase_19 AC 917 ms
99,224 KB
testcase_20 AC 435 ms
87,780 KB
testcase_21 AC 419 ms
85,248 KB
testcase_22 AC 802 ms
94,876 KB
testcase_23 AC 854 ms
97,968 KB
testcase_24 AC 545 ms
91,100 KB
testcase_25 AC 1,031 ms
103,424 KB
testcase_26 AC 727 ms
96,128 KB
testcase_27 AC 848 ms
96,608 KB
testcase_28 AC 722 ms
92,928 KB
testcase_29 AC 664 ms
91,904 KB
testcase_30 AC 720 ms
93,568 KB
testcase_31 AC 998 ms
101,504 KB
testcase_32 AC 376 ms
84,152 KB
testcase_33 AC 627 ms
90,624 KB
testcase_34 AC 208 ms
79,140 KB
testcase_35 AC 327 ms
82,552 KB
testcase_36 AC 1,237 ms
106,256 KB
testcase_37 AC 884 ms
95,836 KB
testcase_38 AC 369 ms
86,716 KB
testcase_39 AC 45 ms
52,224 KB
testcase_40 AC 44 ms
52,480 KB
testcase_41 AC 45 ms
52,224 KB
testcase_42 AC 45 ms
52,608 KB
testcase_43 AC 1,558 ms
113,164 KB
testcase_44 AC 977 ms
99,304 KB
testcase_45 AC 699 ms
94,324 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import heapq

N,K,M,P = 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)
S = [int(input()) for _ in range(N)]
X = [int(input())-1 for _ in range(K)]

# {イベントが起こる日,イベントの種類,起こる頂点}
que = []
heapq.heapify(que)
Ans = 0

#回復したか
recovered = [False]*N
#検疫が入ったか
quarantined = [False]*N
#いま感染しているか
infected = [False]*N

#0: 回復 1: 隣に感染 2:検疫 
for i in range(K):
    infected[X[i]] = True
    heapq.heappush(que, [P,0,X[i]])
    heapq.heappush(que, [S[X[i]],1,X[i]])

while len(que)>0:
    q = heapq.heappop(que)

    #検疫が入った場合その後一切のアクションを起こさない
    if quarantined[q[2]]:
        continue

    if q[1] == 0:
        #回復
        infected[q[2]] = False
        recovered[q[2]] = True
    elif q[1] == 1:
        #隣にうつす
        for e in G[q[2]]:
            if recovered[e] or quarantined[e]:
                continue
            #すでにかかっていた場合検疫送り
            if infected[e]:
                heapq.heappush(que, [q[0],2,e])
            else:
                infected[e] = True
                heapq.heappush(que, [q[0]+P,0,e])
                heapq.heappush(que, [q[0]+S[e],1,e])
    else:
        #検疫
        Ans += 1
        infected[q[2]] = False
        quarantined[q[2]] = True

print(Ans)
0