結果

問題 No.2387 Yokan Factory
ユーザー ikomaikoma
提出日時 2023-07-21 21:42:36
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 2,290 ms / 5,000 ms
コード長 773 bytes
コンパイル時間 288 ms
コンパイル使用メモリ 82,048 KB
実行使用メモリ 185,064 KB
最終ジャッジ日時 2024-09-21 23:08:31
合計ジャッジ時間 19,293 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 42 ms
52,608 KB
testcase_01 AC 42 ms
52,096 KB
testcase_02 AC 42 ms
52,224 KB
testcase_03 AC 42 ms
52,352 KB
testcase_04 AC 42 ms
52,480 KB
testcase_05 AC 44 ms
52,480 KB
testcase_06 AC 41 ms
52,736 KB
testcase_07 AC 43 ms
52,480 KB
testcase_08 AC 42 ms
52,736 KB
testcase_09 AC 42 ms
52,224 KB
testcase_10 AC 41 ms
52,608 KB
testcase_11 AC 42 ms
52,608 KB
testcase_12 AC 41 ms
52,608 KB
testcase_13 AC 41 ms
52,608 KB
testcase_14 AC 43 ms
52,352 KB
testcase_15 AC 998 ms
135,168 KB
testcase_16 AC 445 ms
126,464 KB
testcase_17 AC 1,198 ms
185,064 KB
testcase_18 AC 1,533 ms
132,664 KB
testcase_19 AC 1,026 ms
112,896 KB
testcase_20 AC 777 ms
104,900 KB
testcase_21 AC 1,812 ms
136,788 KB
testcase_22 AC 674 ms
102,504 KB
testcase_23 AC 1,702 ms
122,468 KB
testcase_24 AC 484 ms
103,156 KB
testcase_25 AC 973 ms
101,824 KB
testcase_26 AC 1,896 ms
131,712 KB
testcase_27 AC 2,290 ms
140,004 KB
testcase_28 AC 94 ms
77,312 KB
testcase_29 AC 117 ms
76,928 KB
testcase_30 AC 111 ms
77,056 KB
testcase_31 AC 111 ms
76,416 KB
testcase_32 AC 93 ms
76,672 KB
testcase_33 AC 98 ms
76,288 KB
testcase_34 AC 115 ms
77,240 KB
testcase_35 AC 115 ms
76,672 KB
testcase_36 AC 77 ms
70,912 KB
testcase_37 AC 39 ms
52,864 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = sys.stdin.readline
from heapq import heappush,heappop
INF=1<<60
N,M,X=map(int,input().split())
UVAB=[list(map(int,input().split())) for _ in range(M)]
edge = [[] for _ in range(N)]
for u,v,a,b in UVAB:
    u-=1;v-=1
    edge[u].append((v,a,b))
    edge[v].append((u,a,b))

def check(B):
    time = [INF]*N
    time[0]=0
    que = [(0,0)]
    while que:
        x,v = heappop(que)
        if time[v]<x:continue
        for to,a,b in edge[v]:
            if b<B:continue
            x2 = x+a
            if x2 >= time[to]:continue
            time[to]=x2
            heappush(que, (x2,to))
        if time[-1]<=X:return True
    return False

ok,ng=-1,10**9+1
while ok+1<ng:
    m = ok+ng>>1
    if check(m):
        ok=m
    else:
        ng=m
print(ok)

0