結果

問題 No.1 道のショートカット
ユーザー CrazyBBBCrazyBBB
提出日時 2016-03-05 18:15:11
言語 Java21
(openjdk 21)
結果
AC  
実行時間 338 ms / 5,000 ms
コード長 1,165 bytes
コンパイル時間 2,158 ms
コンパイル使用メモリ 77,176 KB
実行使用メモリ 47,268 KB
最終ジャッジ日時 2024-07-20 16:22:09
合計ジャッジ時間 12,765 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 129 ms
41,464 KB
testcase_01 AC 131 ms
41,028 KB
testcase_02 AC 131 ms
41,256 KB
testcase_03 AC 135 ms
41,464 KB
testcase_04 AC 134 ms
41,420 KB
testcase_05 AC 136 ms
41,072 KB
testcase_06 AC 143 ms
41,748 KB
testcase_07 AC 154 ms
41,376 KB
testcase_08 AC 330 ms
46,688 KB
testcase_09 AC 311 ms
46,168 KB
testcase_10 AC 276 ms
46,580 KB
testcase_11 AC 290 ms
46,972 KB
testcase_12 AC 323 ms
47,100 KB
testcase_13 AC 338 ms
47,000 KB
testcase_14 AC 186 ms
42,228 KB
testcase_15 AC 131 ms
41,432 KB
testcase_16 AC 237 ms
43,412 KB
testcase_17 AC 131 ms
41,316 KB
testcase_18 AC 193 ms
42,620 KB
testcase_19 AC 197 ms
42,104 KB
testcase_20 AC 223 ms
42,712 KB
testcase_21 AC 198 ms
41,908 KB
testcase_22 AC 159 ms
41,620 KB
testcase_23 AC 284 ms
47,268 KB
testcase_24 AC 282 ms
45,812 KB
testcase_25 AC 221 ms
43,504 KB
testcase_26 AC 208 ms
42,856 KB
testcase_27 AC 308 ms
46,892 KB
testcase_28 AC 136 ms
41,500 KB
testcase_29 AC 235 ms
45,488 KB
testcase_30 AC 195 ms
43,260 KB
testcase_31 AC 209 ms
44,364 KB
testcase_32 AC 303 ms
45,792 KB
testcase_33 AC 235 ms
44,008 KB
testcase_34 AC 292 ms
46,980 KB
testcase_35 AC 207 ms
45,532 KB
testcase_36 AC 240 ms
45,768 KB
testcase_37 AC 214 ms
45,436 KB
testcase_38 AC 179 ms
42,308 KB
testcase_39 AC 211 ms
42,244 KB
testcase_40 AC 201 ms
43,204 KB
testcase_41 AC 182 ms
42,292 KB
testcase_42 AC 126 ms
41,648 KB
testcase_43 AC 131 ms
41,088 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class Main {

	static int[] S;
	static int[] T;
	static int[] Y;
	static int[] M;
	static int[][] dp;
	static final int INF = Integer.MAX_VALUE/2;

	public static void main(String[] args) {
		Scanner sc = new Scanner(System.in);

		int N = sc.nextInt();
		int C = sc.nextInt();
		int V = sc.nextInt();
		dp = new int[N][C+1];
		S = new int[V];
		for (int i=0; i<V; i++) {
			S[i] = sc.nextInt()-1;
		}
		T = new int[V];
		for (int i=0; i<V; i++) {
			T[i] = sc.nextInt()-1;
		}
		Y = new int[V];
		for (int i=0; i<V; i++) {
			Y[i] = sc.nextInt();
		}
		M = new int[V];
		for (int i=0; i<V; i++) {
			M[i] = sc.nextInt();
		}

		for (int i=0; i<N; i++) {
			for (int j=0; j<=C; j++) {
				dp[i][j] = INF;
			}
		}
		for (int i=0; i<=C; i++) {
			dp[0][i] = 0;
		}

		for (int i=0; i<N; i++) {
			for (int j=0; j<=C; j++) {
				for (int k=0; k<V; k++) {
					if (S[k] == i) {
						if (j+Y[k]<=C) {
							dp[T[k]][j+Y[k]] = Math.min(dp[T[k]][j+Y[k]], dp[i][j]+M[k]);
						}
					}
				}
			}
		}

		int ans = dp[N-1][C];
		if (ans == INF) {
			System.out.println(-1);
		} else {
			System.out.println(ans);
		}

		sc.close();
	}
}
0