結果

問題 No.2387 Yokan Factory
ユーザー 👑 MizarMizar
提出日時 2023-07-20 02:42:30
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,783 ms / 5,000 ms
コード長 745 bytes
コンパイル時間 171 ms
コンパイル使用メモリ 82,500 KB
実行使用メモリ 184,048 KB
最終ジャッジ日時 2024-09-20 00:35:15
合計ジャッジ時間 15,753 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
52,892 KB
testcase_01 AC 38 ms
52,876 KB
testcase_02 AC 38 ms
52,860 KB
testcase_03 AC 36 ms
53,340 KB
testcase_04 AC 40 ms
54,236 KB
testcase_05 AC 36 ms
54,464 KB
testcase_06 AC 37 ms
54,464 KB
testcase_07 AC 36 ms
53,532 KB
testcase_08 AC 38 ms
54,064 KB
testcase_09 AC 37 ms
53,948 KB
testcase_10 AC 37 ms
52,812 KB
testcase_11 AC 35 ms
53,004 KB
testcase_12 AC 35 ms
53,076 KB
testcase_13 AC 36 ms
54,256 KB
testcase_14 AC 36 ms
54,284 KB
testcase_15 AC 835 ms
124,612 KB
testcase_16 AC 436 ms
120,632 KB
testcase_17 AC 1,133 ms
184,048 KB
testcase_18 AC 1,783 ms
137,808 KB
testcase_19 AC 818 ms
110,008 KB
testcase_20 AC 424 ms
99,976 KB
testcase_21 AC 1,659 ms
141,164 KB
testcase_22 AC 432 ms
98,888 KB
testcase_23 AC 1,718 ms
125,632 KB
testcase_24 AC 601 ms
100,604 KB
testcase_25 AC 609 ms
99,348 KB
testcase_26 AC 882 ms
115,976 KB
testcase_27 AC 499 ms
112,636 KB
testcase_28 AC 78 ms
76,900 KB
testcase_29 AC 72 ms
74,492 KB
testcase_30 AC 112 ms
77,860 KB
testcase_31 AC 113 ms
76,488 KB
testcase_32 AC 82 ms
76,300 KB
testcase_33 AC 83 ms
76,240 KB
testcase_34 AC 124 ms
78,084 KB
testcase_35 AC 124 ms
77,728 KB
testcase_36 AC 46 ms
57,248 KB
testcase_37 AC 38 ms
53,224 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import heapq
N, M, X = map(int,input().split())
G = [[] for _ in range(N + 1)]
for _ in range(M):
    u, v, a, b = map(int,input().split())
    G[u].append((v, a, b))
    G[v].append((u, a, b))

def d(m):
    H = [(0, 1)]
    F = [False] * (N + 1)
    D = [X + 1] * (N + 1)
    D[1] = 0
    while H:
        t, i = heapq.heappop(H)
        if i == N:
            return t <= X
        if F[i]:
            continue
        F[i] = True
        for j, a, b in G[i]:
            t2 = t + a
            if m > b or t2 > X or D[j] <= t2:
                continue
            D[j] = t2
            heapq.heappush(H, (t2, j))
    return False

l, r = -1, 10 ** 9 + 1
while r - l > 1:
    m = (l + r) // 2
    l, r = (m, r) if d(m) else (l, m)
print(l)
0