結果

問題 No.2387 Yokan Factory
ユーザー i_takui_taku
提出日時 2023-07-21 21:46:22
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 1,029 bytes
コンパイル時間 284 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 182,660 KB
最終ジャッジ日時 2024-09-21 23:14:25
合計ジャッジ時間 26,991 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 45 ms
54,016 KB
testcase_01 AC 50 ms
53,888 KB
testcase_02 AC 44 ms
54,144 KB
testcase_03 AC 43 ms
54,016 KB
testcase_04 AC 46 ms
53,888 KB
testcase_05 AC 43 ms
53,888 KB
testcase_06 AC 45 ms
54,144 KB
testcase_07 AC 47 ms
54,144 KB
testcase_08 AC 47 ms
53,888 KB
testcase_09 AC 45 ms
54,144 KB
testcase_10 AC 46 ms
53,888 KB
testcase_11 AC 46 ms
54,144 KB
testcase_12 AC 46 ms
54,016 KB
testcase_13 AC 46 ms
54,400 KB
testcase_14 AC 46 ms
54,016 KB
testcase_15 AC 1,270 ms
142,392 KB
testcase_16 AC 740 ms
143,296 KB
testcase_17 WA -
testcase_18 AC 1,760 ms
159,500 KB
testcase_19 AC 2,198 ms
141,824 KB
testcase_20 AC 1,661 ms
133,120 KB
testcase_21 AC 2,816 ms
147,284 KB
testcase_22 AC 1,627 ms
124,620 KB
testcase_23 AC 2,351 ms
146,304 KB
testcase_24 AC 899 ms
112,732 KB
testcase_25 AC 1,402 ms
121,856 KB
testcase_26 AC 2,417 ms
140,800 KB
testcase_27 AC 3,130 ms
182,660 KB
testcase_28 AC 121 ms
77,852 KB
testcase_29 WA -
testcase_30 AC 145 ms
78,592 KB
testcase_31 WA -
testcase_32 AC 97 ms
76,672 KB
testcase_33 AC 108 ms
76,800 KB
testcase_34 WA -
testcase_35 AC 145 ms
78,660 KB
testcase_36 AC 105 ms
76,928 KB
testcase_37 AC 47 ms
54,912 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = lambda: sys.stdin.readline()[:-1]
from heapq import heappush, heappop
from collections import defaultdict

N, M, X = map(int, input().split())
INF = float('inf')
g = [defaultdict(list) for _ in range(N)]

def main():
    for _ in range(M):
        u, v, a, b = map(int, input().split())
        u -= 1; v -= 1
        g[u][v].append((a, b))
        g[v][u].append((a, b))

    ok = 0
    ng = X + 1
    while ng - ok > 1:
        mid = (ok + ng) // 2
        if dijkstra(mid):
            ok = mid
        else:
            ng = mid
    print(ok if 0 < ok <= X else -1)
    
def dijkstra(s):
    hq = [(0, 0)]
    dist = [INF] * N
    dist[0] = 0
    while hq:
        d, u = heappop(hq)
        if dist[u] < d:
            continue
        for v in g[u]:
            for a, b in g[u][v]:
                if b < s:
                    continue
                if dist[v] > dist[u] + a:
                    dist[v] = dist[u] + a
                    heappush(hq, (dist[v], v))
    return dist[N - 1] <= X

main()
0