結果

問題 No.1 道のショートカット
ユーザー warashiwarashi
提出日時 2015-02-08 17:45:31
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
WA  
実行時間 -
コード長 1,274 bytes
コンパイル時間 398 ms
コンパイル使用メモリ 10,928 KB
実行使用メモリ 533,028 KB
最終ジャッジ日時 2023-09-22 11:56:16
合計ジャッジ時間 7,911 ms
ジャッジサーバーID
(参考情報)
judge15 / judge11
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 20 ms
8,672 KB
testcase_01 AC 21 ms
8,816 KB
testcase_02 AC 21 ms
8,728 KB
testcase_03 AC 21 ms
8,828 KB
testcase_04 WA -
testcase_05 AC 20 ms
8,824 KB
testcase_06 AC 20 ms
8,820 KB
testcase_07 AC 20 ms
8,668 KB
testcase_08 AC 81 ms
10,260 KB
testcase_09 AC 44 ms
9,856 KB
testcase_10 WA -
testcase_11 MLE -
testcase_12 -- -
testcase_13 -- -
testcase_14 -- -
testcase_15 -- -
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 -- -
testcase_38 -- -
testcase_39 -- -
testcase_40 -- -
testcase_41 -- -
testcase_42 -- -
testcase_43 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

#!/usr/bin/env python3
import functools
import operator


def memoize(fn):
    table = {}

    def func(*args):
        if args not in table:
            table[args] = fn(*args)
        return table[args]
    return func

N = int(input())
C = int(input())
V = int(input())
S = [int(s) for s in input().split()]
T = [int(t) for t in input().split()]
Y = [int(y) for y in input().split()]
M = [int(m) for m in input().split()]

PATH = list(zip(S, T))
COST = dict(zip(PATH, Y))
METER = dict(zip(PATH, M))


@memoize
def path(town, yen):
    if town == 1:
        return [[1]]
    road = [path(s, yen - COST[s, t])
            for s, t in PATH if t == town and yen >= COST[s, t]]
    if len(road) < 1:
        return [[-1]]
    return [p + [town] for p in functools.reduce(operator.add, road)]


def cost(path):
    cost = 0
    for i in range(1, len(path)):
        if path[i - 1] < 0:
            continue
        cost += COST[path[i - 1], path[i]]
    return cost


def meter(path):
    meter = 0
    for i in range(1, len(path)):
        if path[i - 1] < 0:
            continue
        meter += METER[path[i - 1], path[i]]
    return meter


route = [meter(p) for p in path(N, C) if p[0] == 1 and cost(p) <= C]
if len(route) == 0:
    print(-1)
else:
    print(min(route))
0