結果

問題 No.2916 累進コスト最小化
ユーザー 👑 p-adicp-adic
提出日時 2023-10-21 13:22:20
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
TLE  
実行時間 -
コード長 484 bytes
コンパイル時間 127 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 111,872 KB
最終ジャッジ日時 2024-09-21 14:36:44
合計ジャッジ時間 13,096 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 31 ms
16,384 KB
testcase_01 AC 30 ms
10,752 KB
testcase_02 AC 28 ms
10,752 KB
testcase_03 AC 28 ms
10,880 KB
testcase_04 AC 26 ms
10,752 KB
testcase_05 AC 27 ms
10,880 KB
testcase_06 AC 27 ms
10,880 KB
testcase_07 AC 27 ms
10,880 KB
testcase_08 AC 28 ms
10,880 KB
testcase_09 AC 27 ms
10,880 KB
testcase_10 AC 26 ms
10,880 KB
testcase_11 AC 26 ms
10,752 KB
testcase_12 AC 27 ms
10,880 KB
testcase_13 AC 29 ms
10,752 KB
testcase_14 AC 30 ms
10,880 KB
testcase_15 AC 32 ms
10,752 KB
testcase_16 AC 32 ms
10,880 KB
testcase_17 AC 30 ms
10,880 KB
testcase_18 AC 28 ms
10,752 KB
testcase_19 AC 31 ms
10,880 KB
testcase_20 AC 31 ms
10,880 KB
testcase_21 AC 32 ms
10,880 KB
testcase_22 AC 31 ms
10,752 KB
testcase_23 AC 2,940 ms
95,104 KB
testcase_24 TLE -
testcase_25 TLE -
testcase_26 -- -
testcase_27 -- -
testcase_28 -- -
testcase_29 -- -
testcase_30 -- -
testcase_31 -- -
testcase_32 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

R=range
J=lambda:map(int,input().split())
N,M,C=J()
C+=1
e=[[]for i in R(N)]
f=[[[]]*N for i in R(N)]
for m in R(M):
	i,j,r,w=J()
	e[i-1]+=[j-1]
	e[j-1]+=[i-1]
	f[i-1][j-1]=[max(-1,c-c//r-w)for c in R(C)]
	f[j-1][i-1]=f[i-1][j-1][:]
u=[[1]*C for i in R(N)]
for c in R(1,C):
	q,l,r=[[0,c]],0,C
	while len(q):
		i,d=q.pop(-1)
		if d>=0 and u[i][d]:
			u[i][d]=0
			for j in e[i]:q+=[[j,f[i][j][d]]]
	if u[N-1][0]:l=r=-1
	while l+1<r:
		m=(l+r)//2
		if u[N-1][m]:r=m
		else:l=m
	print(l)
0