結果

問題 No.2916 累進コスト最小化
ユーザー vwxyzvwxyz
提出日時 2024-10-04 22:12:05
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 704 ms / 3,500 ms
コード長 1,386 bytes
コンパイル時間 435 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 97,184 KB
最終ジャッジ日時 2024-10-05 01:06:19
合計ジャッジ時間 9,790 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 334 ms
92,676 KB
testcase_01 AC 118 ms
89,700 KB
testcase_02 AC 117 ms
89,680 KB
testcase_03 AC 116 ms
89,472 KB
testcase_04 AC 116 ms
89,344 KB
testcase_05 AC 119 ms
89,600 KB
testcase_06 AC 122 ms
89,600 KB
testcase_07 AC 121 ms
89,344 KB
testcase_08 AC 119 ms
89,600 KB
testcase_09 AC 120 ms
89,600 KB
testcase_10 AC 120 ms
89,600 KB
testcase_11 AC 121 ms
89,472 KB
testcase_12 AC 118 ms
89,344 KB
testcase_13 AC 121 ms
89,536 KB
testcase_14 AC 125 ms
90,124 KB
testcase_15 AC 129 ms
90,496 KB
testcase_16 AC 123 ms
90,004 KB
testcase_17 AC 134 ms
90,240 KB
testcase_18 AC 125 ms
90,092 KB
testcase_19 AC 127 ms
89,472 KB
testcase_20 AC 135 ms
90,240 KB
testcase_21 AC 126 ms
90,148 KB
testcase_22 AC 134 ms
90,448 KB
testcase_23 AC 130 ms
90,308 KB
testcase_24 AC 264 ms
91,776 KB
testcase_25 AC 386 ms
93,888 KB
testcase_26 AC 704 ms
97,184 KB
testcase_27 AC 698 ms
97,108 KB
testcase_28 AC 552 ms
95,048 KB
testcase_29 AC 537 ms
95,808 KB
testcase_30 AC 310 ms
93,288 KB
testcase_31 AC 465 ms
94,704 KB
testcase_32 AC 513 ms
95,488 KB
testcase_33 AC 407 ms
95,644 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import bisect
import copy
import decimal
import fractions
import heapq
import itertools
import math
import random
import sys
import time
from collections import Counter,deque,defaultdict
from functools import lru_cache,reduce
from heapq import heappush,heappop,heapify,heappushpop,_heappop_max,_heapify_max
def _heappush_max(heap,item):
    heap.append(item)
    heapq._siftdown_max(heap, 0, len(heap)-1)
def _heappushpop_max(heap, item):
    if heap and item < heap[0]:
        item, heap[0] = heap[0], item
        heapq._siftup_max(heap, 0)
    return item
from math import gcd as GCD
read=sys.stdin.read
readline=sys.stdin.readline
readlines=sys.stdin.readlines
write=sys.stdout.write
#import pypyjit
#pypyjit.set_param('max_unroll_recursion=-1')
#sys.set_int_max_str_digits(10**9)

N,M,C=map(int,input().split())
graph=[[] for x in range(N)]
for m in range(M):
    u,v,r,w=map(int,input().split())
    u-=1;v-=1
    graph[u].append((v,r,w))
    graph[v].append((u,r,w))
for c in range(1,C+1):
    inf=1<<30
    dist=[-inf]*N
    dist[0]=c
    queue=[(c,0)]
    while queue:
        dx,x=_heappop_max(queue)
        if dist[x]>dx:
            continue
        for y,r,w in graph[x]:
            dy=dx-dx//r-w
            if dist[y]<dy and dy>=0:
                dist[y]=dy
                _heappush_max(queue,(dy,y))
    ans=dist[N-1]
    if ans==-inf:
        ans=-1
    print(ans)
0