結果

問題 No.2916 累進コスト最小化
ユーザー titiatitia
提出日時 2024-10-30 04:30:02
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
TLE  
実行時間 -
コード長 603 bytes
コンパイル時間 279 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 22,016 KB
最終ジャッジ日時 2024-10-30 04:30:20
合計ジャッジ時間 18,040 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

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

ソースコード

diff #

import sys
input = sys.stdin.readline

from heapq import heappop,heappush

N,M,C=map(int,input().split())

E=[[] for i in range(N)]

for i in range(M):
    x,y,r,w=map(int,input().split())
    x-=1
    y-=1
    E[x].append((y,r,w))
    E[y].append((x,r,w))

ANS=[]

for i in range(1,C+1):
    DP=[-1]*N
    DP[0]=i
    Q=[(-i,0)]

    while Q:
        now,ind=heappop(Q)

        if DP[ind]!=-now:
            continue

        now=-now

        for to,r,w in E[ind]:
            if DP[to]<now-(now//r+w):
                DP[to]=now-(now//r+w)
                heappush(Q,(-DP[to],to))

    print(DP[-1])
0