結果

問題 No.2387 Yokan Factory
ユーザー mymelochanmymelochan
提出日時 2023-07-21 21:36:00
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 2,526 ms / 5,000 ms
コード長 1,188 bytes
コンパイル時間 242 ms
コンパイル使用メモリ 82,408 KB
実行使用メモリ 186,880 KB
最終ジャッジ日時 2024-09-21 22:56:54
合計ジャッジ時間 22,562 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 47 ms
54,528 KB
testcase_01 AC 46 ms
54,144 KB
testcase_02 AC 44 ms
54,400 KB
testcase_03 AC 45 ms
54,656 KB
testcase_04 AC 45 ms
54,784 KB
testcase_05 AC 47 ms
54,528 KB
testcase_06 AC 48 ms
54,528 KB
testcase_07 AC 46 ms
54,784 KB
testcase_08 AC 47 ms
54,528 KB
testcase_09 AC 46 ms
54,272 KB
testcase_10 AC 46 ms
54,528 KB
testcase_11 AC 45 ms
54,272 KB
testcase_12 AC 48 ms
54,528 KB
testcase_13 AC 48 ms
54,528 KB
testcase_14 AC 45 ms
54,528 KB
testcase_15 AC 1,050 ms
125,604 KB
testcase_16 AC 581 ms
122,240 KB
testcase_17 AC 1,604 ms
186,880 KB
testcase_18 AC 1,220 ms
118,656 KB
testcase_19 AC 1,559 ms
113,536 KB
testcase_20 AC 1,133 ms
104,320 KB
testcase_21 AC 2,491 ms
129,792 KB
testcase_22 AC 1,206 ms
103,552 KB
testcase_23 AC 1,792 ms
116,864 KB
testcase_24 AC 741 ms
100,480 KB
testcase_25 AC 959 ms
99,072 KB
testcase_26 AC 2,165 ms
128,640 KB
testcase_27 AC 2,526 ms
136,448 KB
testcase_28 AC 107 ms
77,568 KB
testcase_29 AC 148 ms
78,848 KB
testcase_30 AC 136 ms
78,208 KB
testcase_31 AC 123 ms
77,824 KB
testcase_32 AC 108 ms
76,544 KB
testcase_33 AC 93 ms
76,416 KB
testcase_34 AC 136 ms
78,848 KB
testcase_35 AC 118 ms
77,312 KB
testcase_36 AC 100 ms
76,416 KB
testcase_37 AC 48 ms
54,784 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#############################################################

import sys
sys.setrecursionlimit(10**7)

from heapq import heappop,heappush
from collections import deque,defaultdict,Counter
from bisect import bisect_left, bisect_right
from itertools import product,combinations,permutations

ipt = sys.stdin.readline

def iin():
    return int(ipt())
def lmin():
    return list(map(int,ipt().split()))

inf = 1<<60
MOD = 998244353
#############################################################

N,M,X = lmin()
G = [[] for _ in range(N)]
for _ in range(M):
    u,v,a,b = lmin()
    u,v = u-1,v-1
    G[u].append((v,a,b))
    G[v].append((u,a,b))

def check(cen):
    cost = [inf]*N
    cost[0] = 0

    hq = []
    heappush(hq, (0,0))

    while hq:
        t,cur = heappop(hq)
        if t > cost[cur]:
            continue

        for nxt,a,b in G[cur]:
            if b < cen:
                continue
            nt = t+a 
            if nt < cost[nxt]:
                cost[nxt] = nt
                heappush(hq, (nt, nxt))

    return cost[-1] <= X

ok = -1
ng = 1<<30

while ng - ok > 1:
    cen = (ok+ng)//2
    if check(cen):
        ok = cen
    else:
        ng = cen

print(ok)
0