結果

問題 No.1 道のショートカット
ユーザー こるこる
提出日時 2017-01-03 15:26:30
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
WA  
実行時間 -
コード長 1,006 bytes
コンパイル時間 222 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 11,776 KB
最終ジャッジ日時 2024-07-08 04:36:47
合計ジャッジ時間 3,608 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 35 ms
11,264 KB
testcase_01 AC 36 ms
11,264 KB
testcase_02 AC 35 ms
11,520 KB
testcase_03 AC 35 ms
11,264 KB
testcase_04 AC 35 ms
11,136 KB
testcase_05 AC 35 ms
11,392 KB
testcase_06 AC 35 ms
11,392 KB
testcase_07 AC 35 ms
11,264 KB
testcase_08 AC 55 ms
11,520 KB
testcase_09 AC 40 ms
11,392 KB
testcase_10 AC 51 ms
11,520 KB
testcase_11 AC 66 ms
11,520 KB
testcase_12 AC 127 ms
11,776 KB
testcase_13 WA -
testcase_14 AC 36 ms
11,392 KB
testcase_15 AC 36 ms
11,264 KB
testcase_16 AC 37 ms
11,392 KB
testcase_17 AC 35 ms
11,520 KB
testcase_18 AC 37 ms
11,392 KB
testcase_19 AC 35 ms
11,520 KB
testcase_20 AC 41 ms
11,392 KB
testcase_21 AC 37 ms
11,392 KB
testcase_22 AC 36 ms
11,264 KB
testcase_23 AC 103 ms
11,520 KB
testcase_24 AC 96 ms
11,264 KB
testcase_25 AC 45 ms
11,520 KB
testcase_26 AC 40 ms
11,264 KB
testcase_27 AC 90 ms
11,264 KB
testcase_28 AC 35 ms
11,264 KB
testcase_29 AC 54 ms
11,392 KB
testcase_30 AC 38 ms
11,520 KB
testcase_31 AC 50 ms
11,520 KB
testcase_32 AC 65 ms
11,392 KB
testcase_33 WA -
testcase_34 WA -
testcase_35 AC 37 ms
11,264 KB
testcase_36 AC 44 ms
11,264 KB
testcase_37 AC 39 ms
11,520 KB
testcase_38 AC 35 ms
11,264 KB
testcase_39 AC 36 ms
11,264 KB
testcase_40 AC 36 ms
11,392 KB
testcase_41 AC 35 ms
11,392 KB
testcase_42 AC 35 ms
11,136 KB
testcase_43 AC 35 ms
11,392 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import math
import queue

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+1)]

def fun(index,cost):
    if dp[index][cost] != -1:
        return dp[index][cost]

    if cost<0:
        return math.inf

    if index==n-1:
        return 0

    mini=math.inf
    for to in range(len(nodes[index].edges_to)):
        mini=min(fun(nodes[index].edges_to[to],cost-nodes[index].edges_cost[to])+nodes[index].edges_minute[to],mini)
    dp[index][cost]=mini
    return mini

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