結果

問題 No.2387 Yokan Factory
ユーザー mono_0812mono_0812
提出日時 2023-07-21 21:47:24
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 2,231 bytes
コンパイル時間 253 ms
コンパイル使用メモリ 82,604 KB
実行使用メモリ 158,208 KB
最終ジャッジ日時 2024-09-21 23:15:40
合計ジャッジ時間 12,101 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 158 ms
91,776 KB
testcase_01 AC 155 ms
91,904 KB
testcase_02 AC 153 ms
91,904 KB
testcase_03 AC 154 ms
91,904 KB
testcase_04 AC 160 ms
91,904 KB
testcase_05 AC 152 ms
91,904 KB
testcase_06 AC 152 ms
91,776 KB
testcase_07 AC 153 ms
91,776 KB
testcase_08 AC 155 ms
91,904 KB
testcase_09 AC 154 ms
91,904 KB
testcase_10 AC 155 ms
92,016 KB
testcase_11 AC 157 ms
91,904 KB
testcase_12 AC 150 ms
91,904 KB
testcase_13 AC 154 ms
91,904 KB
testcase_14 AC 155 ms
92,032 KB
testcase_15 AC 1,431 ms
158,208 KB
testcase_16 AC 712 ms
142,976 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 #

############################################################################################
import bisect,collections,copy,heapq,itertools,math,string,sys,queue,time,random
from decimal import Decimal
def I(): return input()
def IS(): return input().split()
def II(): return int(input())
def IIS(): return list(map(int,input().split()))
def LIIS(): return list(map(int,input().split()))

def make_divisors(n):
    lower_divisors , upper_divisors = [], []
    i = 1
    while i*i <= n:
        if n % i == 0:
            lower_divisors.append(i)
            if i != n // i:
                upper_divisors.append(n//i)
        i += 1
    return lower_divisors + upper_divisors[::-1]

import math

def prime_numbers(n):
    prime = [True for i in range(n+1)]
    prime[0] = False
    prime[1] = False

    sqrt_n = math.ceil(math.sqrt(n))
    for i in range(2, sqrt_n):
        if prime[i]:
            for j in range(2*i, n+1, i):
                prime[j] = False
    numbers=[]
    for i in range(2,n+1):
        if prime[i]:
            numbers.append(i)

    return numbers

def factorization(n):
    arr = []
    temp = n
    for i in range(2, int(-(-n**0.5//1))+1):
        if temp%i==0:
            cnt=0
            while temp%i==0:
                cnt+=1
                temp //= i
            arr.append([i, cnt])
 
    if temp!=1:
        arr.append([temp, 1])
 
    if arr==[]:
        arr.append([n, 1])
 
    return arr
 
INF=1<<63
MOD=998244353
MOD2=10**9+7
sys.setrecursionlimit(500005)
alpha="ABCDEFGHIJKLMNOPQRSTUVWXYZ"
def bit_count(x):
    return bin(x).count("1")
def yesno(f):
    if f:print("Yes")
    else:print("No")
####################################################
l=-1
r=10**10
n,m,x=IIS()
path=[[] for i in range(n)]
for _ in range(m):
    u,v,a,b=IIS()
    path[u-1].append((v-1,a,b))
    path[v-1].append((u-1,a,b))

def is_ok(val):
    q=[(0,0)]
    costs=[INF for i in range(n)]
    costs[0]=0
    while q:
        c,v=heapq.heappop(q)
        for i,j,k in path[v]:
            if costs[i]<c+j or val>k:continue
            heapq.heappush(q,(c+j,i))
            costs[i]=c+j
    return costs[n-1]<=x

while r-l>1:
    mid=(r+l)//2
    if is_ok(mid):
        l=mid
    else:
        r=mid
print(l)
0