結果

問題 No.2387 Yokan Factory
ユーザー cleanttedcleantted
提出日時 2023-06-14 05:09:43
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 2,191 bytes
コンパイル時間 677 ms
コンパイル使用メモリ 87,532 KB
実行使用メモリ 400,404 KB
最終ジャッジ日時 2023-09-06 01:05:59
合計ジャッジ時間 12,871 ms
ジャッジサーバーID
(参考情報)
judge14 / judge13
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 342 ms
95,764 KB
testcase_01 AC 333 ms
95,704 KB
testcase_02 AC 331 ms
95,756 KB
testcase_03 AC 336 ms
95,596 KB
testcase_04 AC 330 ms
95,960 KB
testcase_05 AC 334 ms
95,596 KB
testcase_06 AC 347 ms
95,692 KB
testcase_07 AC 344 ms
95,712 KB
testcase_08 AC 338 ms
95,844 KB
testcase_09 AC 340 ms
95,424 KB
testcase_10 AC 336 ms
95,664 KB
testcase_11 AC 337 ms
95,808 KB
testcase_12 AC 335 ms
95,832 KB
testcase_13 AC 337 ms
95,824 KB
testcase_14 AC 338 ms
95,824 KB
testcase_15 TLE -
testcase_16 -- -
testcase_17 -- -
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
import copy
import heapq
import itertools
import math
import operator
import random
import sys
from bisect import bisect, bisect_left, bisect_right, insort
from collections import Counter, deque
from fractions import Fraction
from functools import cmp_to_key, lru_cache, partial
from inspect import currentframe
from math import ceil, gcd, log10, pi, sqrt
from typing import Iterable, Iterator, List, Tuple, TypeVar, Union

# import pypyjit
# pypyjit.set_param('max_unroll_recursion=-1')
# import string
# import networkx as nx
input = sys.stdin.readline
sys.setrecursionlimit(10000000)
# mod = 10 ** 9 + 7
mod = 998244353
# mod = 1 << 128
# mod = 10 ** 30 + 1
INF = 1 << 61
DIFF = 10 ** -9
DX = [1, 0, -1, 0, 1, 1, -1, -1]
DY = [0, 1, 0, -1, 1, -1, 1, -1]

def read_values(): return tuple(map(int, input().split()))
def read_index(): return tuple(map(lambda x: int(x) - 1, input().split()))
def read_list(): return list(read_values())
def read_lists(N): return [read_list() for _ in range(N)]
def dprint(*values): print(*values, file=sys.stderr)
def dprint2(*values):
    names = {id(v): k for k, v in currentframe().f_back.f_locals.items()}
    dprint(", ".join(f"{names.get(id(value), '???')}={repr(value)}" for value in values))


# 大きさと距離をもつダイクストラ O((XN + M) log(XN))
def fake1():
    N, M, X = read_values() 
    L = read_lists(M)

    G = [[] for _ in range(N)]

    for u, v, a, b in L:
        u -= 1
        v -= 1
        G[u].append((b, v, a))
        G[v].append((b, u, a))

    S = [(-INF, 0, 0)]
    seen = set()
    D = {}
    D[(0, INF)] = 0
    while S:
        t, c, i = heapq.heappop(S)
        t = -t
        if (i, t) in seen:
            continue
        seen.add((i, t))

        if i == N - 1:
            print(t)
            return
        
        for b, j, a in G[i]:
            t2 = min(t, b)
            if (j, t2) in seen:
                continue
            if c + a > X:
                continue
            if (j, t2) in D and D[(j, t2)] <= c + a:
                continue
            D[(j, t2)] = c + a

            heapq.heappush(S, (-t2, c + a, j))

    print(-1)


if __name__ == "__main__":
    fake1()
0