結果

問題 No.2915 辺更新価値最大化
ユーザー 👑 p-adicp-adic
提出日時 2024-06-15 20:19:44
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
TLE  
実行時間 -
コード長 481 bytes
コンパイル時間 622 ms
コンパイル使用メモリ 12,800 KB
実行使用メモリ 11,392 KB
最終ジャッジ日時 2024-07-29 20:31:08
合計ジャッジ時間 30,133 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 31 ms
10,880 KB
testcase_01 AC 32 ms
11,008 KB
testcase_02 AC 30 ms
10,880 KB
testcase_03 AC 32 ms
10,880 KB
testcase_04 AC 32 ms
11,008 KB
testcase_05 AC 34 ms
10,880 KB
testcase_06 AC 38 ms
11,008 KB
testcase_07 AC 425 ms
11,008 KB
testcase_08 AC 483 ms
11,008 KB
testcase_09 AC 680 ms
11,136 KB
testcase_10 AC 664 ms
11,136 KB
testcase_11 AC 708 ms
11,136 KB
testcase_12 AC 688 ms
11,264 KB
testcase_13 AC 1,276 ms
11,136 KB
testcase_14 AC 1,267 ms
11,136 KB
testcase_15 AC 1,534 ms
11,392 KB
testcase_16 AC 1,751 ms
11,264 KB
testcase_17 AC 1,679 ms
11,264 KB
testcase_18 AC 1,664 ms
11,392 KB
testcase_19 AC 1,648 ms
11,264 KB
testcase_20 AC 1,691 ms
11,264 KB
testcase_21 AC 1,286 ms
11,392 KB
testcase_22 AC 900 ms
11,264 KB
testcase_23 AC 1,901 ms
11,264 KB
testcase_24 AC 1,849 ms
11,264 KB
testcase_25 TLE -
testcase_26 AC 1,707 ms
11,264 KB
testcase_27 TLE -
権限があれば一括ダウンロードができます

ソースコード

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