結果

問題 No.2387 Yokan Factory
ユーザー KDKJKDKJ
提出日時 2024-06-29 03:16:40
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
TLE  
実行時間 -
コード長 1,181 bytes
コンパイル時間 149 ms
コンパイル使用メモリ 12,800 KB
実行使用メモリ 54,392 KB
最終ジャッジ日時 2024-06-29 03:17:16
合計ジャッジ時間 31,035 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 28 ms
10,624 KB
testcase_01 AC 28 ms
10,752 KB
testcase_02 AC 26 ms
10,624 KB
testcase_03 AC 26 ms
10,752 KB
testcase_04 AC 26 ms
10,624 KB
testcase_05 AC 27 ms
10,624 KB
testcase_06 AC 27 ms
10,752 KB
testcase_07 AC 26 ms
10,752 KB
testcase_08 AC 26 ms
10,624 KB
testcase_09 AC 26 ms
10,752 KB
testcase_10 AC 27 ms
10,624 KB
testcase_11 AC 26 ms
10,624 KB
testcase_12 AC 26 ms
10,624 KB
testcase_13 AC 26 ms
10,752 KB
testcase_14 AC 26 ms
10,752 KB
testcase_15 AC 2,278 ms
48,140 KB
testcase_16 AC 1,063 ms
50,260 KB
testcase_17 TLE -
testcase_18 AC 2,448 ms
48,016 KB
testcase_19 AC 1,759 ms
35,376 KB
testcase_20 AC 963 ms
33,584 KB
testcase_21 AC 3,136 ms
44,836 KB
testcase_22 AC 853 ms
31,512 KB
testcase_23 AC 3,731 ms
35,952 KB
testcase_24 AC 1,618 ms
32,372 KB
testcase_25 AC 1,279 ms
25,540 KB
testcase_26 AC 2,005 ms
37,996 KB
testcase_27 AC 1,050 ms
41,260 KB
testcase_28 AC 34 ms
11,008 KB
testcase_29 AC 34 ms
11,264 KB
testcase_30 AC 42 ms
11,264 KB
testcase_31 AC 39 ms
11,008 KB
testcase_32 AC 35 ms
10,752 KB
testcase_33 AC 31 ms
10,880 KB
testcase_34 AC 45 ms
11,136 KB
testcase_35 AC 46 ms
11,136 KB
testcase_36 AC 33 ms
10,752 KB
testcase_37 AC 30 ms
10,752 KB
権限があれば一括ダウンロードができます

ソースコード

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 = -1
    ng = m+1
    while ng - ok > 1:
        mid = (ok + ng)//2
        v = [1 << 60] * N
        v[0] = 0
        f = [False] * N
        q = []
        heappush(q,(0,0))
        while q:
            t,p = heappop(q)
            if p == N-1:
                break
            if f[p]:
                continue
            f[p] = True
            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 v[-1] <= X:
            ok = mid
        else:
            ng = mid
        
        
    print(ok)
    
    
    



if __name__ == '__main__':
    main()


0