結果

問題 No.1 道のショートカット
ユーザー こるこる
提出日時 2017-01-03 15:48:52
言語 Python3
(3.13.1 + numpy 2.2.1 + scipy 1.14.1)
結果
AC  
実行時間 123 ms / 5,000 ms
コード長 1,006 bytes
コンパイル時間 149 ms
コンパイル使用メモリ 12,800 KB
実行使用メモリ 11,264 KB
最終ジャッジ日時 2024-07-20 16:28:41
合計ジャッジ時間 3,315 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 34 ms
10,880 KB
testcase_01 AC 32 ms
11,008 KB
testcase_02 AC 31 ms
11,008 KB
testcase_03 AC 31 ms
11,008 KB
testcase_04 AC 30 ms
11,008 KB
testcase_05 AC 31 ms
11,008 KB
testcase_06 AC 31 ms
10,880 KB
testcase_07 AC 31 ms
10,880 KB
testcase_08 AC 49 ms
11,136 KB
testcase_09 AC 35 ms
11,008 KB
testcase_10 AC 46 ms
11,136 KB
testcase_11 AC 62 ms
11,008 KB
testcase_12 AC 114 ms
11,264 KB
testcase_13 AC 112 ms
11,264 KB
testcase_14 AC 32 ms
10,880 KB
testcase_15 AC 31 ms
10,880 KB
testcase_16 AC 33 ms
11,136 KB
testcase_17 AC 31 ms
10,880 KB
testcase_18 AC 31 ms
10,880 KB
testcase_19 AC 32 ms
10,880 KB
testcase_20 AC 37 ms
10,880 KB
testcase_21 AC 32 ms
10,880 KB
testcase_22 AC 31 ms
10,880 KB
testcase_23 AC 98 ms
11,136 KB
testcase_24 AC 93 ms
11,136 KB
testcase_25 AC 41 ms
10,880 KB
testcase_26 AC 36 ms
10,880 KB
testcase_27 AC 86 ms
10,880 KB
testcase_28 AC 31 ms
10,880 KB
testcase_29 AC 48 ms
11,008 KB
testcase_30 AC 34 ms
11,008 KB
testcase_31 AC 45 ms
11,008 KB
testcase_32 AC 59 ms
11,136 KB
testcase_33 AC 43 ms
11,008 KB
testcase_34 AC 123 ms
11,008 KB
testcase_35 AC 34 ms
11,008 KB
testcase_36 AC 40 ms
11,008 KB
testcase_37 AC 35 ms
10,880 KB
testcase_38 AC 31 ms
10,880 KB
testcase_39 AC 32 ms
10,752 KB
testcase_40 AC 32 ms
10,880 KB
testcase_41 AC 32 ms
10,880 KB
testcase_42 AC 32 ms
10,880 KB
testcase_43 AC 31 ms
10,752 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import math

class Node:
    def __init__(self):
        self.edges_to=[]
        self.edges_cost=[]
        self.edges_minute=[]

n=int(input())
c=int(input())
v=int(input())
s=[int(i) for i in input().split()]
t=[int(i) for i in input().split()]
y=[int(i) for i in input().split()]
m=[int(i) for i in input().split()]

nodes=[Node() for i in range(n)]

for i in range(len(s)):
    nodes[s[i]-1].edges_to.append(t[i]-1)
    nodes[s[i]-1].edges_cost.append(y[i])
    nodes[s[i]-1].edges_minute.append(m[i])

dp=[[-1 for i in range(c+1)] for j in range(n)]


def fun(index,cost):

    if cost<0:
        return math.inf

    if dp[index][cost] != -1:
        return dp[index][cost]

    if index==n-1:
        ret=0
    else:
        ret=math.inf
        for to in range(len(nodes[index].edges_to)):
            ret=min(fun(nodes[index].edges_to[to],cost-nodes[index].edges_cost[to])+nodes[index].edges_minute[to],ret)
    dp[index][cost]=ret
    return ret

sum=fun(0,c)
print(-1 if sum==math.inf else sum)
0