結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 31 ms
16,384 KB
testcase_01 AC 31 ms
10,880 KB
testcase_02 AC 32 ms
10,880 KB
testcase_03 AC 30 ms
10,752 KB
testcase_04 AC 31 ms
10,880 KB
testcase_05 AC 31 ms
10,880 KB
testcase_06 AC 31 ms
10,880 KB
testcase_07 AC 32 ms
10,880 KB
testcase_08 AC 31 ms
10,880 KB
testcase_09 AC 32 ms
10,880 KB
testcase_10 AC 31 ms
10,880 KB
testcase_11 AC 31 ms
10,880 KB
testcase_12 AC 33 ms
10,752 KB
testcase_13 AC 72 ms
10,880 KB
testcase_14 AC 72 ms
10,880 KB
testcase_15 AC 71 ms
10,880 KB
testcase_16 AC 75 ms
10,880 KB
testcase_17 AC 66 ms
10,880 KB
testcase_18 AC 64 ms
10,880 KB
testcase_19 AC 72 ms
10,752 KB
testcase_20 AC 69 ms
10,880 KB
testcase_21 AC 72 ms
10,880 KB
testcase_22 AC 73 ms
10,880 KB
testcase_23 TLE -
testcase_24 -- -
testcase_25 -- -
testcase_26 -- -
testcase_27 -- -
testcase_28 -- -
testcase_29 -- -
testcase_30 -- -
testcase_31 -- -
testcase_32 -- -
権限があれば一括ダウンロードができます
コンパイルメッセージ
Main.py:15: SyntaxWarning: invalid decimal literal
  t=[-1if W[i][k][c]<0else W[k][j][W[i][k][c]]for c in R(C)]
Main.py:15: SyntaxWarning: invalid decimal literal
  t=[-1if W[i][k][c]<0else W[k][j][W[i][k][c]]for c in R(C)]
Main.py:18: SyntaxWarning: invalid decimal literal
  for c in R(1,C):print(-1if W[0][N-1]==[]else W[0][N-1][c])

ソースコード

diff #

R=range
J=lambda:map(int,input().split())
N,M,C=J()
C+=1
W=[[[]]*N for i in R(N)]
for m in R(M):
	i,j,r,w=J()
	W[i-1][j-1]=[max(-1,c-c//r-w)for c in R(C)]
	W[j-1][i-1]=W[i-1][j-1][:]
for k in R(N):
	for i in R(N):
		if W[i][k]!=[]and i!=k:
			for j in R(N):
				if W[k][j]!=[]and i!=j and k!=j:
					t=[-1if W[i][k][c]<0else W[k][j][W[i][k][c]]for c in R(C)]
					if W[i][j]==[]:W[i][j]=t
					else:W[i][j]=[max(W[i][j][c],t[c])for c in R(C)]
for c in R(1,C):print(-1if W[0][N-1]==[]else W[0][N-1][c])
0