結果

問題 No.2387 Yokan Factory
ユーザー lloyzlloyz
提出日時 2023-07-21 21:50:04
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 2,448 ms / 5,000 ms
コード長 797 bytes
コンパイル時間 247 ms
コンパイル使用メモリ 82,432 KB
実行使用メモリ 181,388 KB
最終ジャッジ日時 2024-09-21 23:17:58
合計ジャッジ時間 21,154 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 52 ms
53,888 KB
testcase_01 AC 52 ms
53,760 KB
testcase_02 AC 48 ms
54,144 KB
testcase_03 AC 48 ms
54,016 KB
testcase_04 AC 49 ms
53,888 KB
testcase_05 AC 49 ms
54,400 KB
testcase_06 AC 49 ms
54,016 KB
testcase_07 AC 49 ms
54,016 KB
testcase_08 AC 50 ms
53,760 KB
testcase_09 AC 49 ms
54,144 KB
testcase_10 AC 48 ms
54,016 KB
testcase_11 AC 51 ms
54,016 KB
testcase_12 AC 52 ms
54,144 KB
testcase_13 AC 51 ms
54,016 KB
testcase_14 AC 49 ms
54,272 KB
testcase_15 AC 991 ms
121,848 KB
testcase_16 AC 666 ms
125,568 KB
testcase_17 AC 1,716 ms
181,388 KB
testcase_18 AC 2,448 ms
131,328 KB
testcase_19 AC 1,258 ms
105,132 KB
testcase_20 AC 643 ms
98,304 KB
testcase_21 AC 2,368 ms
129,352 KB
testcase_22 AC 734 ms
98,424 KB
testcase_23 AC 2,321 ms
117,428 KB
testcase_24 AC 767 ms
98,984 KB
testcase_25 AC 897 ms
94,920 KB
testcase_26 AC 1,264 ms
109,268 KB
testcase_27 AC 648 ms
110,516 KB
testcase_28 AC 108 ms
77,184 KB
testcase_29 AC 122 ms
77,696 KB
testcase_30 AC 157 ms
78,080 KB
testcase_31 AC 151 ms
77,568 KB
testcase_32 AC 120 ms
76,928 KB
testcase_33 AC 113 ms
77,184 KB
testcase_34 AC 165 ms
78,336 KB
testcase_35 AC 150 ms
77,952 KB
testcase_36 AC 71 ms
66,176 KB
testcase_37 AC 51 ms
54,528 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import defaultdict
from heapq import heappop, heappush

n, m, x = map(int, input().split())
G = defaultdict(list)
for _ in range(m):
    u, v, a, b = map(int, input().split())
    u -= 1
    v -= 1
    G[u].append((v, a, b))
    G[v].append((u, a, b))

left, right = -1, 10**9 + 10
while right - left > 1:
    mid = (left + right) // 2
    DP = [x + 1 for _ in range(n)]
    DP[0] = 0
    H = [(0, 0)]
    while H:
        cc, cp = heappop(H)
        if cc > DP[cp]:
            continue
        for np, a, b in G[cp]:
            if b < mid:
                continue
            if cc + a >= DP[np]:
                continue
            DP[np] = cc + a
            heappush(H, (cc + a, np))
    if DP[n - 1] == x + 1:
        right = mid
    else:
        left = mid
print(left)
0