結果

問題 No.2387 Yokan Factory
ユーザー KDKJKDKJ
提出日時 2024-06-29 03:08:58
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 1,173 bytes
コンパイル時間 160 ms
コンパイル使用メモリ 82,048 KB
実行使用メモリ 114,304 KB
最終ジャッジ日時 2024-06-29 03:09:08
合計ジャッジ時間 9,243 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
55,500 KB
testcase_01 AC 39 ms
54,272 KB
testcase_02 AC 38 ms
54,016 KB
testcase_03 AC 37 ms
54,144 KB
testcase_04 AC 42 ms
54,144 KB
testcase_05 AC 39 ms
53,888 KB
testcase_06 AC 36 ms
54,016 KB
testcase_07 AC 37 ms
54,144 KB
testcase_08 AC 38 ms
54,016 KB
testcase_09 AC 40 ms
54,144 KB
testcase_10 AC 39 ms
54,016 KB
testcase_11 AC 42 ms
54,144 KB
testcase_12 AC 46 ms
54,144 KB
testcase_13 AC 47 ms
54,144 KB
testcase_14 AC 40 ms
54,144 KB
testcase_15 AC 725 ms
114,304 KB
testcase_16 AC 383 ms
111,488 KB
testcase_17 TLE -
testcase_18 -- -
testcase_19 -- -
testcase_20 -- -
testcase_21 -- -
testcase_22 -- -
testcase_23 -- -
testcase_24 -- -
testcase_25 -- -
testcase_26 -- -
testcase_27 -- -
testcase_28 -- -
testcase_29 -- -
testcase_30 -- -
testcase_31 -- -
testcase_32 -- -
testcase_33 -- -
testcase_34 -- -
testcase_35 -- -
testcase_36 -- -
testcase_37 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import defaultdict,Counter,deque
from heapq import heappush,heappop


def main():
    
    
    
    N,M,X =map(int,input().split())
    e = [[] for _ in range(N)]
    m = 0
    for _ in range(M):
        u,v,a,b = map(int,input().split())
        u -= 1
        v -= 1
        m = max(b,m)
        e[u].append([v,a,b])
        e[v].append([u,a,b])
    for i in range(N):
        e[i].sort(key=lambda x:-x[2])
    ok = 0
    ng = m+1
    while ng - ok > 1:
        mid = (ok + ng)//2
        v = [1 << 60] * N
        v[0] = 0
        q = []
        heappush(q,(0,0))
        f = False
        while q:
            t,p = heappop(q)
            if p == N-1:
                f = True
                break
            for next,a,b in e[p]:
                if mid > b:
                    break
                if mid <= b and t + a <= X and t + a < v[next]:
                    v[next] = t + a
                    heappush(q,(v[next],next))
        
        if f:
            ok = mid
        else:
            ng = mid
        
        
    if ok == 0:
        print(-1)
    else:
        print(ok)
    
    
    



if __name__ == '__main__':
    main()


0