結果

問題 No.2387 Yokan Factory
ユーザー Navier_BoltzmannNavier_Boltzmann
提出日時 2023-07-24 03:44:07
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 2,681 ms / 5,000 ms
コード長 1,007 bytes
コンパイル時間 534 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 181,376 KB
最終ジャッジ日時 2024-09-25 06:31:26
合計ジャッジ時間 19,709 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 48 ms
55,168 KB
testcase_01 AC 44 ms
55,296 KB
testcase_02 AC 45 ms
55,424 KB
testcase_03 AC 45 ms
55,552 KB
testcase_04 AC 45 ms
55,552 KB
testcase_05 AC 44 ms
55,296 KB
testcase_06 AC 49 ms
55,168 KB
testcase_07 AC 51 ms
55,936 KB
testcase_08 AC 43 ms
55,296 KB
testcase_09 AC 45 ms
55,680 KB
testcase_10 AC 45 ms
55,168 KB
testcase_11 AC 43 ms
55,168 KB
testcase_12 AC 44 ms
55,424 KB
testcase_13 AC 45 ms
55,296 KB
testcase_14 AC 49 ms
55,552 KB
testcase_15 AC 1,065 ms
128,000 KB
testcase_16 AC 649 ms
128,640 KB
testcase_17 AC 1,474 ms
181,376 KB
testcase_18 AC 1,839 ms
126,848 KB
testcase_19 AC 1,745 ms
115,456 KB
testcase_20 AC 1,286 ms
106,524 KB
testcase_21 AC 2,681 ms
134,220 KB
testcase_22 AC 1,162 ms
105,060 KB
testcase_23 AC 1,774 ms
117,888 KB
testcase_24 AC 865 ms
101,576 KB
testcase_25 AC 185 ms
87,652 KB
testcase_26 AC 267 ms
97,024 KB
testcase_27 AC 303 ms
100,336 KB
testcase_28 AC 120 ms
78,080 KB
testcase_29 AC 150 ms
78,848 KB
testcase_30 AC 140 ms
78,080 KB
testcase_31 AC 127 ms
77,568 KB
testcase_32 AC 107 ms
76,800 KB
testcase_33 AC 92 ms
77,048 KB
testcase_34 AC 152 ms
78,208 KB
testcase_35 AC 85 ms
77,520 KB
testcase_36 AC 93 ms
76,928 KB
testcase_37 AC 46 ms
55,936 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import *
from itertools import *
from functools import *
from heapq import *
import sys,math
sys.setrecursionlimit(3*10**5)
input = sys.stdin.readline
INF = (1<<60)
N,M,X = map(int,input().split())
e = [[] for _ in range(N)]
for _ in range(M):
    u,v,a,b = map(int,input().split())
    u -= 1
    v -= 1
    e[u].append((v,a,b))
    e[v].append((u,a,b))
    
def dijkstra(s,e,t):
    
    N = len(e)
    dist = [INF]*N
    dist[s]=0
    h = []
    heappush(h,(0,s))
    while h:
        nw,v = heappop(h)
        if dist[v]!=nw:
            continue
        for iv,ic,iw in e[v]:
            if iw<t:
                continue
            nc = ic + nw
            if nc < dist[iv]:
                dist[iv] = nc
                heappush(h,(nc,iv))
    return dist


def is_ok(T):
    D = dijkstra(0,e,T)
    return D[-1]<=X

if not is_ok(1):
    print(-1)
    exit()
y = 10**9 + 100
x = 1
while y-x>1:
    mid = (y+x)//2
    if is_ok(mid):
        x = mid
    else:
        y = mid
print(x)
0