結果

問題 No.1 道のショートカット
ユーザー Navier_BoltzmannNavier_Boltzmann
提出日時 2022-10-10 08:30:00
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 81 ms / 5,000 ms
コード長 897 bytes
コンパイル時間 184 ms
コンパイル使用メモリ 82,408 KB
実行使用メモリ 72,808 KB
最終ジャッジ日時 2024-06-24 04:12:40
合計ジャッジ時間 4,462 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 50 ms
56,644 KB
testcase_01 AC 48 ms
56,748 KB
testcase_02 AC 48 ms
56,416 KB
testcase_03 AC 48 ms
56,448 KB
testcase_04 AC 48 ms
56,020 KB
testcase_05 AC 49 ms
56,476 KB
testcase_06 AC 49 ms
56,416 KB
testcase_07 AC 55 ms
63,900 KB
testcase_08 AC 76 ms
72,344 KB
testcase_09 AC 71 ms
70,672 KB
testcase_10 AC 69 ms
71,016 KB
testcase_11 AC 71 ms
72,172 KB
testcase_12 AC 79 ms
72,808 KB
testcase_13 AC 81 ms
72,208 KB
testcase_14 AC 61 ms
66,852 KB
testcase_15 AC 48 ms
57,068 KB
testcase_16 AC 65 ms
70,072 KB
testcase_17 AC 58 ms
66,116 KB
testcase_18 AC 62 ms
68,928 KB
testcase_19 AC 63 ms
67,288 KB
testcase_20 AC 66 ms
69,480 KB
testcase_21 AC 64 ms
68,260 KB
testcase_22 AC 62 ms
68,356 KB
testcase_23 AC 73 ms
71,892 KB
testcase_24 AC 74 ms
70,644 KB
testcase_25 AC 65 ms
68,888 KB
testcase_26 AC 63 ms
68,280 KB
testcase_27 AC 73 ms
72,464 KB
testcase_28 AC 55 ms
64,448 KB
testcase_29 AC 69 ms
72,712 KB
testcase_30 AC 65 ms
69,632 KB
testcase_31 AC 66 ms
69,596 KB
testcase_32 AC 68 ms
70,172 KB
testcase_33 AC 68 ms
69,612 KB
testcase_34 AC 74 ms
71,904 KB
testcase_35 AC 62 ms
69,336 KB
testcase_36 AC 65 ms
69,924 KB
testcase_37 AC 65 ms
71,076 KB
testcase_38 AC 59 ms
66,916 KB
testcase_39 AC 62 ms
69,540 KB
testcase_40 AC 62 ms
69,988 KB
testcase_41 AC 60 ms
66,988 KB
testcase_42 AC 48 ms
56,404 KB
testcase_43 AC 49 ms
57,056 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import *
from itertools import *
from functools import *
from heapq import *
import sys,math
input = sys.stdin.readline
sys.setrecursionlimit(10**6)

N = int(input())
C = int(input())
V = int(input())
S = list(map(int,input().split()))
T = list(map(int,input().split()))
Y = list(map(int,input().split()))
M = list(map(int,input().split()))
INF = (1<<60)
dp = [[INF]*(C+2) for _ in range(N)]
e = [[] for _ in range(N)]
for i in range(V):
    
    s,t,y,m = S[i],T[i],Y[i],M[i]
    
    s -= 1
    t -= 1
    e[s].append((t,y,m))
    e[t].append((s,y,m))
    
dp[0][0] = 0

def f(x):
    
    return min(x,C+1)
    
for i in range(N-1):
    
    
    for v,y,m in e[i]:
        
        for j in range(C+1):
            
            
            dp[v][f(j+y)] = min(dp[v][f(j+y)],dp[i][j]+m)
            
ans = min(dp[-1][:C+1])
if ans==INF:
    print(-1)
else:
    print(ans)
    
0