結果

問題 No.2387 Yokan Factory
ユーザー tassei903tassei903
提出日時 2023-07-21 21:39:17
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 2,590 ms / 5,000 ms
コード長 1,057 bytes
コンパイル時間 268 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 177,028 KB
最終ジャッジ日時 2024-09-21 23:03:21
合計ジャッジ時間 24,388 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
52,608 KB
testcase_01 AC 39 ms
52,352 KB
testcase_02 AC 42 ms
52,480 KB
testcase_03 AC 39 ms
52,480 KB
testcase_04 AC 42 ms
52,608 KB
testcase_05 AC 43 ms
52,736 KB
testcase_06 AC 41 ms
52,224 KB
testcase_07 AC 42 ms
52,608 KB
testcase_08 AC 40 ms
52,608 KB
testcase_09 AC 38 ms
52,480 KB
testcase_10 AC 39 ms
52,480 KB
testcase_11 AC 40 ms
52,480 KB
testcase_12 AC 39 ms
52,608 KB
testcase_13 AC 40 ms
52,736 KB
testcase_14 AC 40 ms
52,480 KB
testcase_15 AC 1,028 ms
125,844 KB
testcase_16 AC 546 ms
124,416 KB
testcase_17 AC 1,436 ms
177,028 KB
testcase_18 AC 1,899 ms
126,016 KB
testcase_19 AC 1,675 ms
113,796 KB
testcase_20 AC 1,297 ms
105,728 KB
testcase_21 AC 2,590 ms
132,676 KB
testcase_22 AC 1,188 ms
103,236 KB
testcase_23 AC 1,929 ms
116,008 KB
testcase_24 AC 814 ms
100,436 KB
testcase_25 AC 1,120 ms
99,508 KB
testcase_26 AC 2,228 ms
127,532 KB
testcase_27 AC 2,467 ms
132,108 KB
testcase_28 AC 126 ms
76,800 KB
testcase_29 AC 157 ms
77,912 KB
testcase_30 AC 143 ms
77,712 KB
testcase_31 AC 149 ms
77,176 KB
testcase_32 AC 113 ms
76,288 KB
testcase_33 AC 97 ms
76,416 KB
testcase_34 AC 138 ms
77,920 KB
testcase_35 AC 119 ms
76,800 KB
testcase_36 AC 86 ms
73,984 KB
testcase_37 AC 42 ms
52,608 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = lambda :sys.stdin.readline()[:-1]
ni = lambda :int(input())
na = lambda :list(map(int,input().split()))
yes = lambda :print("yes");Yes = lambda :print("Yes");YES = lambda : print("YES")
no = lambda :print("no");No = lambda :print("No");NO = lambda : print("NO")
#######################################################################
from heapq import *
INF = 10**18
def dijkstra(g, s, n, x):
    dist = [INF]*n
    hq = [(0, s)]
    dist[s] = 0
    while hq:
        d, v = heappop(hq)
        if dist[v]!=d:
            continue
        for to, a,b, in g[v]:
            if b >= x and dist[v] + a < dist[to]:
                dist[to] = dist[v] + a
                heappush(hq, (dist[to], to))
    return dist
n,m,x = na()

g = [[] for i in range(n)]

for _ in range(m):
    u,v,a,b = na()
    u-=1
    v-=1
    g[u].append((v,a,b))
    g[v].append((u,a,b))

ok = -1
ng = 10**9
while abs(ok-ng)>1:
    d = ok+ng>>1
    dist = dijkstra(g,0,n,d)
    #print(d,dist)
    if dist[-1] <= x:
        ok = d
    else:
        ng = d


print(ok)
0