結果

問題 No.2387 Yokan Factory
ユーザー KDKJKDKJ
提出日時 2024-06-29 02:54:21
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 1,013 bytes
コンパイル時間 184 ms
コンパイル使用メモリ 82,468 KB
実行使用メモリ 141,124 KB
最終ジャッジ日時 2024-06-29 02:54:30
合計ジャッジ時間 9,169 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 50 ms
54,380 KB
testcase_01 AC 37 ms
54,376 KB
testcase_02 AC 36 ms
55,356 KB
testcase_03 AC 40 ms
55,748 KB
testcase_04 WA -
testcase_05 AC 40 ms
55,476 KB
testcase_06 AC 41 ms
55,756 KB
testcase_07 AC 41 ms
55,036 KB
testcase_08 AC 41 ms
55,140 KB
testcase_09 AC 38 ms
54,316 KB
testcase_10 AC 38 ms
54,648 KB
testcase_11 WA -
testcase_12 WA -
testcase_13 AC 36 ms
55,552 KB
testcase_14 WA -
testcase_15 WA -
testcase_16 WA -
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 = -1
    ng = m+1
    while ng - ok > 1:
        mid = (ok + ng)//2
        v = [1 << 60] * N
        v[0] = 0
        q = []
        heappush(q,(0,0))
        f = True
        while q:
            t,p = heappop(q)
            if p == N-1:
                if t > X:
                    f = False
                break
            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 f:
            ok = mid
        else:
            ng = mid
        
    print(ok)
    
    
    



if __name__ == '__main__':
    main()


0