結果

問題 No.2387 Yokan Factory
ユーザー lloyzlloyz
提出日時 2023-07-21 21:49:26
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 2,283 ms / 5,000 ms
コード長 792 bytes
コンパイル時間 189 ms
コンパイル使用メモリ 81,920 KB
実行使用メモリ 181,736 KB
最終ジャッジ日時 2024-09-21 23:16:57
合計ジャッジ時間 19,346 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 47 ms
53,760 KB
testcase_01 AC 45 ms
54,272 KB
testcase_02 AC 43 ms
54,016 KB
testcase_03 AC 44 ms
54,400 KB
testcase_04 AC 45 ms
54,528 KB
testcase_05 AC 44 ms
54,400 KB
testcase_06 AC 44 ms
53,888 KB
testcase_07 AC 44 ms
54,016 KB
testcase_08 AC 48 ms
54,528 KB
testcase_09 AC 44 ms
54,016 KB
testcase_10 AC 44 ms
53,888 KB
testcase_11 AC 44 ms
53,760 KB
testcase_12 AC 44 ms
54,016 KB
testcase_13 AC 44 ms
54,656 KB
testcase_14 AC 47 ms
53,888 KB
testcase_15 AC 924 ms
121,840 KB
testcase_16 AC 620 ms
125,824 KB
testcase_17 AC 1,591 ms
181,736 KB
testcase_18 AC 2,283 ms
131,316 KB
testcase_19 AC 1,204 ms
104,908 KB
testcase_20 AC 615 ms
98,688 KB
testcase_21 AC 2,237 ms
129,512 KB
testcase_22 AC 751 ms
98,324 KB
testcase_23 AC 2,173 ms
117,560 KB
testcase_24 AC 782 ms
99,108 KB
testcase_25 AC 871 ms
94,932 KB
testcase_26 AC 1,176 ms
109,272 KB
testcase_27 AC 638 ms
110,396 KB
testcase_28 AC 110 ms
77,056 KB
testcase_29 AC 116 ms
77,440 KB
testcase_30 AC 147 ms
78,080 KB
testcase_31 AC 151 ms
77,696 KB
testcase_32 AC 120 ms
76,672 KB
testcase_33 AC 111 ms
76,928 KB
testcase_34 AC 166 ms
78,336 KB
testcase_35 AC 148 ms
77,952 KB
testcase_36 AC 73 ms
66,560 KB
testcase_37 AC 49 ms
54,016 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
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