結果

問題 No.2387 Yokan Factory
ユーザー aaaaaaaaaa2230aaaaaaaaaa2230
提出日時 2023-07-21 21:57:50
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,522 ms / 5,000 ms
コード長 887 bytes
コンパイル時間 177 ms
コンパイル使用メモリ 82,576 KB
実行使用メモリ 144,332 KB
最終ジャッジ日時 2024-09-21 23:29:06
合計ジャッジ時間 16,385 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
52,352 KB
testcase_01 AC 40 ms
52,608 KB
testcase_02 AC 42 ms
52,352 KB
testcase_03 AC 40 ms
52,608 KB
testcase_04 AC 42 ms
52,748 KB
testcase_05 AC 41 ms
52,992 KB
testcase_06 AC 40 ms
52,736 KB
testcase_07 AC 40 ms
52,736 KB
testcase_08 AC 40 ms
53,120 KB
testcase_09 AC 40 ms
52,608 KB
testcase_10 AC 40 ms
52,736 KB
testcase_11 AC 41 ms
52,736 KB
testcase_12 AC 41 ms
52,736 KB
testcase_13 AC 43 ms
52,608 KB
testcase_14 AC 43 ms
52,608 KB
testcase_15 AC 1,100 ms
137,152 KB
testcase_16 AC 691 ms
132,280 KB
testcase_17 AC 1,016 ms
144,332 KB
testcase_18 AC 1,201 ms
123,924 KB
testcase_19 AC 1,083 ms
110,300 KB
testcase_20 AC 902 ms
107,572 KB
testcase_21 AC 1,513 ms
126,948 KB
testcase_22 AC 753 ms
104,104 KB
testcase_23 AC 1,093 ms
111,704 KB
testcase_24 AC 511 ms
98,772 KB
testcase_25 AC 652 ms
97,536 KB
testcase_26 AC 1,145 ms
115,128 KB
testcase_27 AC 1,522 ms
125,004 KB
testcase_28 AC 119 ms
77,160 KB
testcase_29 AC 141 ms
77,952 KB
testcase_30 AC 128 ms
77,536 KB
testcase_31 AC 128 ms
77,256 KB
testcase_32 AC 97 ms
76,344 KB
testcase_33 AC 107 ms
76,288 KB
testcase_34 AC 148 ms
77,952 KB
testcase_35 AC 129 ms
77,464 KB
testcase_36 AC 98 ms
76,296 KB
testcase_37 AC 40 ms
52,992 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from heapq import heappop,heappush
n,m,x = map(int,input().split())
size = set()
size.add(1)

e = [[] for i in range(n)]
for _ in range(m):
    u,v,a,b = map(int,input().split())
    size.add(b)
    u,v = u-1,v-1
    e[u].append([v,a,b])
    e[v].append([u,a,b])


size = sorted(size)

l = 0
r = len(size)

inf = 10**20
mod = 1<<20
def search(s):
    dis = [inf]*n
    dis[0] = 0
    h = [0]
    while h:
        d,now = divmod(heappop(h),mod)

        if dis[now] != d:
            continue

        for nex,a,b in e[now]:
            if b < s:
                continue
            if dis[nex] > dis[now]+a:
                dis[nex] = dis[now]+a
                heappush(h,(dis[nex]<<20)+nex)
    return dis[-1]

while r > l+1:
    m = (r+l)//2
    if search(size[m]) <= x:
        l = m
    else:
        r = m


ans = search(size[l])
if ans > x:
    print(-1)
else:
    print(size[l])
0