結果

問題 No.2916 累進コスト最小化
ユーザー titiatitia
提出日時 2024-10-30 04:22:42
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 530 bytes
コンパイル時間 598 ms
コンパイル使用メモリ 82,784 KB
実行使用メモリ 82,688 KB
最終ジャッジ日時 2024-10-30 04:22:51
合計ジャッジ時間 8,660 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 297 ms
78,576 KB
testcase_01 AC 35 ms
53,288 KB
testcase_02 AC 37 ms
54,304 KB
testcase_03 AC 36 ms
53,196 KB
testcase_04 AC 38 ms
54,588 KB
testcase_05 AC 37 ms
52,652 KB
testcase_06 AC 37 ms
53,336 KB
testcase_07 AC 37 ms
52,756 KB
testcase_08 AC 37 ms
54,200 KB
testcase_09 AC 37 ms
53,344 KB
testcase_10 AC 38 ms
52,948 KB
testcase_11 AC 40 ms
52,664 KB
testcase_12 AC 37 ms
52,936 KB
testcase_13 AC 37 ms
53,856 KB
testcase_14 AC 43 ms
59,788 KB
testcase_15 AC 47 ms
62,416 KB
testcase_16 AC 41 ms
59,724 KB
testcase_17 WA -
testcase_18 AC 45 ms
60,500 KB
testcase_19 AC 40 ms
54,000 KB
testcase_20 AC 53 ms
65,712 KB
testcase_21 AC 44 ms
60,736 KB
testcase_22 AC 51 ms
64,112 KB
testcase_23 AC 50 ms
62,608 KB
testcase_24 AC 209 ms
78,160 KB
testcase_25 AC 312 ms
79,184 KB
testcase_26 AC 564 ms
82,296 KB
testcase_27 AC 699 ms
82,688 KB
testcase_28 AC 476 ms
81,460 KB
testcase_29 AC 440 ms
80,924 KB
testcase_30 AC 329 ms
79,600 KB
testcase_31 AC 391 ms
79,720 KB
testcase_32 AC 365 ms
78,472 KB
testcase_33 AC 349 ms
78,500 KB
権限があれば一括ダウンロードができます

ソースコード

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))

ANS=[]

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

    while Q:
        now,ind=heappop(Q)

        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