結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 41 ms
56,036 KB
testcase_01 AC 38 ms
54,304 KB
testcase_02 AC 41 ms
54,432 KB
testcase_03 AC 43 ms
54,196 KB
testcase_04 AC 38 ms
55,248 KB
testcase_05 AC 37 ms
55,220 KB
testcase_06 AC 37 ms
55,132 KB
testcase_07 AC 36 ms
54,736 KB
testcase_08 AC 37 ms
54,876 KB
testcase_09 AC 36 ms
55,532 KB
testcase_10 AC 38 ms
55,328 KB
testcase_11 AC 37 ms
55,400 KB
testcase_12 AC 38 ms
54,664 KB
testcase_13 AC 38 ms
55,616 KB
testcase_14 AC 37 ms
56,428 KB
testcase_15 AC 959 ms
121,368 KB
testcase_16 AC 411 ms
115,688 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])
    
    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))
        while q:
            t,p = heappop(q)
            for next,a,b in e[p]:
                if mid <= b and t + a < v[next]:
                    v[next] = t + a
                    heappush(q,(v[next],next))
        
        if v[-1] <= X:
            ok = mid
        else:
            ng = mid
        
    if ok == 0:
        print(-1)
    else:
        print(ok)
    
    
    



if __name__ == '__main__':
    main()


0