結果

問題 No.2915 辺更新価値最大化
ユーザー 👑 p-adicp-adic
提出日時 2024-06-15 20:19:20
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,602 ms / 2,000 ms
コード長 481 bytes
コンパイル時間 489 ms
コンパイル使用メモリ 82,220 KB
実行使用メモリ 81,236 KB
最終ジャッジ日時 2024-07-29 20:30:47
合計ジャッジ時間 13,473 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
52,608 KB
testcase_01 AC 40 ms
53,248 KB
testcase_02 AC 39 ms
52,864 KB
testcase_03 AC 40 ms
53,120 KB
testcase_04 AC 40 ms
53,504 KB
testcase_05 AC 43 ms
54,016 KB
testcase_06 AC 47 ms
61,184 KB
testcase_07 AC 186 ms
77,440 KB
testcase_08 AC 223 ms
77,336 KB
testcase_09 AC 340 ms
77,852 KB
testcase_10 AC 330 ms
77,312 KB
testcase_11 AC 369 ms
78,044 KB
testcase_12 AC 365 ms
77,880 KB
testcase_13 AC 728 ms
78,116 KB
testcase_14 AC 699 ms
78,324 KB
testcase_15 AC 879 ms
78,884 KB
testcase_16 AC 966 ms
78,600 KB
testcase_17 AC 699 ms
78,448 KB
testcase_18 AC 664 ms
78,180 KB
testcase_19 AC 666 ms
78,436 KB
testcase_20 AC 703 ms
78,856 KB
testcase_21 AC 495 ms
78,080 KB
testcase_22 AC 166 ms
77,184 KB
testcase_23 AC 323 ms
77,820 KB
testcase_24 AC 142 ms
77,376 KB
testcase_25 AC 1,602 ms
81,236 KB
testcase_26 AC 219 ms
76,820 KB
testcase_27 AC 1,005 ms
80,000 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

R=range
J=lambda:map(int,input().split())
N,M,Q=J()
E=[[]for i in R(N)]
F=[]
for j in R(M):u,v,w=J();E[u-1]+=[j];F+=[[u-1,v-1,-w]]
P=[9**20]*N
P[0]=0
for _ in R(N):
	for i,j,w in F:P[j]=min(P[j],P[i]+w)
import heapq
B=[1]*M
for j in J():
	B[j-1]^=1;W,S=[0]+[9**30]*N,[[0,0]]
	while S:
		w,i=heapq.heappop(S)
		if w>W[i]:continue
		for e in E[i]:
			if B[e]:
				i,j,v=F[e];v+=P[i]-P[j]
				if w+v<W[j]:W[j]=w+v;heapq.heappush(S,[w+v,j])
	print(["NaN",-W[N-1]-P[N-1]][W[N-1]<9**20])
0