結果

問題 No.1 道のショートカット
ユーザー kou6839kou6839
提出日時 2015-02-26 22:52:47
言語 Java
(openjdk 23)
結果
AC  
実行時間 241 ms / 5,000 ms
コード長 1,074 bytes
コンパイル時間 2,173 ms
コンパイル使用メモリ 77,732 KB
実行使用メモリ 46,296 KB
最終ジャッジ日時 2024-07-20 16:11:16
合計ジャッジ時間 11,512 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 113 ms
40,264 KB
testcase_01 AC 127 ms
41,300 KB
testcase_02 AC 127 ms
41,392 KB
testcase_03 AC 132 ms
41,340 KB
testcase_04 AC 127 ms
41,308 KB
testcase_05 AC 128 ms
41,196 KB
testcase_06 AC 132 ms
41,464 KB
testcase_07 AC 136 ms
41,272 KB
testcase_08 AC 231 ms
45,820 KB
testcase_09 AC 216 ms
44,596 KB
testcase_10 AC 222 ms
45,680 KB
testcase_11 AC 227 ms
46,276 KB
testcase_12 AC 241 ms
45,716 KB
testcase_13 AC 238 ms
46,152 KB
testcase_14 AC 182 ms
41,532 KB
testcase_15 AC 125 ms
41,088 KB
testcase_16 AC 199 ms
42,648 KB
testcase_17 AC 117 ms
40,176 KB
testcase_18 AC 170 ms
41,752 KB
testcase_19 AC 179 ms
41,692 KB
testcase_20 AC 191 ms
42,340 KB
testcase_21 AC 183 ms
42,004 KB
testcase_22 AC 163 ms
42,096 KB
testcase_23 AC 231 ms
46,296 KB
testcase_24 AC 227 ms
45,908 KB
testcase_25 AC 207 ms
42,824 KB
testcase_26 AC 181 ms
42,272 KB
testcase_27 AC 228 ms
46,048 KB
testcase_28 AC 132 ms
41,412 KB
testcase_29 AC 226 ms
45,548 KB
testcase_30 AC 188 ms
42,852 KB
testcase_31 AC 203 ms
44,100 KB
testcase_32 AC 218 ms
44,756 KB
testcase_33 AC 210 ms
43,988 KB
testcase_34 AC 231 ms
45,764 KB
testcase_35 AC 208 ms
45,240 KB
testcase_36 AC 206 ms
45,636 KB
testcase_37 AC 201 ms
44,544 KB
testcase_38 AC 153 ms
41,944 KB
testcase_39 AC 183 ms
42,004 KB
testcase_40 AC 189 ms
43,008 KB
testcase_41 AC 171 ms
41,852 KB
testcase_42 AC 126 ms
41,284 KB
testcase_43 AC 121 ms
40,920 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.math.*;
import java.util.*;

class Main {
	public static void main(String[] args) {
		Scanner sc = new Scanner(System.in);
		int n = sc.nextInt();
		int c = sc.nextInt();
		int v = sc.nextInt();
		int[] s= new int[v];
		int[] t = new int[v];
		int[] y=new int[v];
		int[] m=new int[v];
		for(int i=0;i<v;i++){
			s[i]=sc.nextInt();
		}
		for(int i=0;i<v;i++){
			t[i]=sc.nextInt();
		}
		for(int i=0;i<v;i++){
			y[i]=sc.nextInt();
		}
		for(int i=0;i<v;i++){
			m[i]=sc.nextInt();
		}
		int[][] dp=new int[n+1][c+1];
		for(int i=1;i<=n;i++){
			Arrays.fill(dp[i], Integer.MAX_VALUE-2000);
		}
		Arrays.fill(dp[1], 0);
		for(int i=1;i<n;i++){
			for(int j=0;j<v;j++){
				if(s[j]==i){
					for(int k=0;k<=c;k++){
						if(k!=Integer.MAX_VALUE-2000 && k+y[j]<=c){
							dp[t[j]][k+y[j]]=Math.min(dp[t[j]][k+y[j]], dp[i][k]+m[j]);
						}
					}
				}
			}
		}
		int ans=Integer.MAX_VALUE-2000;
		for(int i=0;i<=c;i++){
			ans=Math.min(ans, dp[n][i]);
		}
		if(ans==Integer.MAX_VALUE-2000){
			System.out.println(-1);
		}else{
			System.out.println(ans);
		}
	}
}
0