結果

問題 No.2387 Yokan Factory
ユーザー titiatitia
提出日時 2023-07-22 00:25:57
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 3,336 ms / 5,000 ms
コード長 817 bytes
コンパイル時間 182 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 208,284 KB
最終ジャッジ日時 2024-09-22 01:43:49
合計ジャッジ時間 22,699 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 45 ms
52,608 KB
testcase_01 AC 47 ms
52,864 KB
testcase_02 AC 46 ms
52,480 KB
testcase_03 AC 43 ms
52,736 KB
testcase_04 AC 43 ms
52,992 KB
testcase_05 AC 43 ms
52,096 KB
testcase_06 AC 44 ms
52,992 KB
testcase_07 AC 47 ms
52,224 KB
testcase_08 AC 47 ms
52,352 KB
testcase_09 AC 47 ms
52,480 KB
testcase_10 AC 45 ms
52,480 KB
testcase_11 AC 44 ms
52,608 KB
testcase_12 AC 44 ms
52,736 KB
testcase_13 AC 43 ms
52,480 KB
testcase_14 AC 44 ms
52,224 KB
testcase_15 AC 1,467 ms
149,008 KB
testcase_16 AC 759 ms
134,668 KB
testcase_17 AC 1,947 ms
208,284 KB
testcase_18 AC 1,414 ms
128,232 KB
testcase_19 AC 2,180 ms
129,360 KB
testcase_20 AC 1,842 ms
119,552 KB
testcase_21 AC 3,336 ms
156,816 KB
testcase_22 AC 1,555 ms
115,004 KB
testcase_23 AC 2,502 ms
135,764 KB
testcase_24 AC 1,122 ms
108,032 KB
testcase_25 AC 221 ms
87,128 KB
testcase_26 AC 322 ms
96,988 KB
testcase_27 AC 360 ms
100,864 KB
testcase_28 AC 136 ms
77,004 KB
testcase_29 AC 166 ms
77,824 KB
testcase_30 AC 157 ms
77,672 KB
testcase_31 AC 152 ms
77,696 KB
testcase_32 AC 116 ms
76,672 KB
testcase_33 AC 104 ms
76,032 KB
testcase_34 AC 177 ms
77,952 KB
testcase_35 AC 88 ms
72,832 KB
testcase_36 AC 112 ms
76,672 KB
testcase_37 AC 45 ms
52,736 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = sys.stdin.readline

from heapq import heappop,heappush

N,M,X=map(int,input().split())

E=[[] for i in range(N+1)]

for i in range(M):
    u,v,a,b=map(int,input().split())
    E[u].append((v,a,b))
    E[v].append((u,a,b))

def calc(NG):

    DIS=[1<<63]*(N+1)
    DIS[1]=0
    Q=[(0,1)]

    while Q:
        now,ind=heappop(Q)

        if DIS[ind]!=now:
            continue

        for to,dis,b in E[ind]:
            if b<NG:
                continue

            if DIS[to]>now+dis:
                DIS[to]=now+dis
                heappush(Q,(DIS[to],to))

    return DIS[N]

if calc(0)>X:
    print(-1)
else:
    OK=0
    NG=10**18+1

    while NG>OK+1:
        mid=(OK+NG)//2

        x=calc(mid)

        if x>X:
            NG=mid
        else:
            OK=mid

    print(OK)

        
0