結果

問題 No.2387 Yokan Factory
ユーザー flygonflygon
提出日時 2023-07-21 21:37:03
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,822 ms / 5,000 ms
コード長 1,116 bytes
コンパイル時間 225 ms
コンパイル使用メモリ 81,920 KB
実行使用メモリ 178,688 KB
最終ジャッジ日時 2024-09-21 22:58:08
合計ジャッジ時間 16,023 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 49 ms
54,400 KB
testcase_01 AC 46 ms
53,888 KB
testcase_02 AC 46 ms
54,144 KB
testcase_03 AC 46 ms
54,272 KB
testcase_04 AC 46 ms
54,528 KB
testcase_05 AC 47 ms
54,528 KB
testcase_06 AC 46 ms
54,528 KB
testcase_07 AC 45 ms
54,528 KB
testcase_08 AC 45 ms
54,400 KB
testcase_09 AC 46 ms
54,016 KB
testcase_10 AC 47 ms
54,272 KB
testcase_11 AC 44 ms
54,272 KB
testcase_12 AC 46 ms
54,144 KB
testcase_13 AC 46 ms
54,272 KB
testcase_14 AC 47 ms
54,528 KB
testcase_15 AC 1,013 ms
127,104 KB
testcase_16 AC 421 ms
117,120 KB
testcase_17 AC 1,230 ms
178,688 KB
testcase_18 AC 1,761 ms
126,464 KB
testcase_19 AC 843 ms
109,184 KB
testcase_20 AC 454 ms
98,304 KB
testcase_21 AC 1,822 ms
131,584 KB
testcase_22 AC 467 ms
96,768 KB
testcase_23 AC 1,818 ms
116,864 KB
testcase_24 AC 661 ms
100,224 KB
testcase_25 AC 751 ms
100,992 KB
testcase_26 AC 1,140 ms
122,880 KB
testcase_27 AC 528 ms
112,384 KB
testcase_28 AC 81 ms
72,320 KB
testcase_29 AC 80 ms
71,040 KB
testcase_30 AC 115 ms
77,440 KB
testcase_31 AC 129 ms
77,568 KB
testcase_32 AC 96 ms
76,416 KB
testcase_33 AC 98 ms
76,160 KB
testcase_34 AC 129 ms
78,208 KB
testcase_35 AC 135 ms
77,696 KB
testcase_36 AC 53 ms
56,320 KB
testcase_37 AC 48 ms
54,400 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
sys.setrecursionlimit(5*10**5)
input = sys.stdin.readline
from collections import defaultdict, deque, Counter
from heapq import heappop, heappush
from bisect import bisect_left, bisect_right
from math import gcd

n,m,x = map(int,input().split())
graph = [[] for i in range(n+1)]
for i in range(m):
    a,b,c,d = map(int,input().split())
    graph[a].append((b,c,d))
    graph[b].append((a,c,d))
#ダイクストラ法
def dijkstra(s,n, W): # sがスタート、nが頂点数
    INF = 10**15
    dist = [INF]*(n+1)
    que = [(0,s)]
    dist[s] = 0
    while que:
        c,crr = heappop(que)
        if c > dist[crr]: continue
        if crr == n: break
        if c > x: break
        for nxt, time, width in graph[crr]:
            if width < W: continue
            if dist[crr] + time < dist[nxt]:
                dist[nxt] = dist[crr] + time
                heappush(que,(dist[nxt],nxt))
    return dist[-1]

l = 0
r = 10**9+1
for i in range(30):
    m = (l+r)//2
    t = dijkstra(1,n,m)
    if t <= x:
        l = m
    else:
        r = m

if dijkstra(1,n,l) <= x:
    print(l)
else:
    print(-1)
0