結果

問題 No.2387 Yokan Factory
ユーザー rlangevinrlangevin
提出日時 2023-07-21 21:42:35
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 2,823 ms / 5,000 ms
コード長 1,447 bytes
コンパイル時間 163 ms
コンパイル使用メモリ 82,388 KB
実行使用メモリ 278,888 KB
最終ジャッジ日時 2024-09-21 23:09:35
合計ジャッジ時間 22,486 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 41 ms
52,992 KB
testcase_01 AC 47 ms
53,248 KB
testcase_02 AC 42 ms
53,248 KB
testcase_03 AC 41 ms
53,248 KB
testcase_04 AC 43 ms
52,992 KB
testcase_05 AC 41 ms
52,992 KB
testcase_06 AC 43 ms
53,376 KB
testcase_07 AC 42 ms
53,376 KB
testcase_08 AC 42 ms
52,864 KB
testcase_09 AC 42 ms
52,864 KB
testcase_10 AC 41 ms
52,736 KB
testcase_11 AC 41 ms
53,248 KB
testcase_12 AC 42 ms
52,992 KB
testcase_13 AC 41 ms
53,120 KB
testcase_14 AC 41 ms
53,248 KB
testcase_15 AC 1,342 ms
270,824 KB
testcase_16 AC 827 ms
255,620 KB
testcase_17 AC 1,720 ms
271,800 KB
testcase_18 AC 2,142 ms
266,364 KB
testcase_19 AC 2,117 ms
271,720 KB
testcase_20 AC 1,401 ms
238,264 KB
testcase_21 AC 2,649 ms
278,888 KB
testcase_22 AC 1,242 ms
227,348 KB
testcase_23 AC 2,823 ms
275,552 KB
testcase_24 AC 1,371 ms
219,264 KB
testcase_25 AC 197 ms
87,108 KB
testcase_26 AC 289 ms
94,248 KB
testcase_27 AC 252 ms
98,780 KB
testcase_28 AC 116 ms
76,880 KB
testcase_29 AC 123 ms
77,696 KB
testcase_30 AC 142 ms
77,568 KB
testcase_31 AC 148 ms
78,080 KB
testcase_32 AC 119 ms
76,928 KB
testcase_33 AC 118 ms
76,512 KB
testcase_34 AC 158 ms
78,208 KB
testcase_35 AC 96 ms
75,264 KB
testcase_36 AC 94 ms
74,240 KB
testcase_37 AC 55 ms
59,136 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = sys.stdin.readline
from heapq import heappush, heappop
inf = float('inf')


def dijkstra(s, g, N, G):
    # ゴールがない場合はg=-1とする。

    def cost(v, m):
        return v * N + m

    dist = [inf] * N
    mindist = [inf] * N
    seen = [False] * N
    Q = [cost(0, s)]
    while Q:
        c, m = divmod(heappop(Q), N)
        if seen[m]:
            continue
        seen[m] = True
        dist[m] = c
        if m == g:
            return dist

        #------heapをアップデートする。--------
        for u, C in G[m]:
            if seen[u]:
                continue
            newdist = dist[m] + C

            #------------------------------------
            if newdist >= mindist[u]:
                continue
            mindist[u] = newdist
            heappush(Q, cost(newdist, u))
    return dist


N, M, X = map(int, input().split())
Edge = []
for i in range(M):
    Edge.append(list(map(int, input().split())))


def check(m):
    G = [[] for i in range(N)]
    for u, v, a, b in Edge:
        if b < m:
            continue
        u, v = u - 1, v - 1
        G[u].append((v, a))
        G[v].append((u, a))
        
    D = dijkstra(0, N - 1, N, G)
    return D[-1] <= X
         

if not check(0):
    print(-1)
    exit()
    
yes = 0
no = 10 ** 18 + 5
while no - yes != 1:
    mid = (yes + no)//2
    if check(mid):
        yes = mid
    else:
        no = mid
        
print(yes)
0