結果

問題 No.1 道のショートカット
ユーザー nCk_cvnCk_cv
提出日時 2016-02-18 15:24:47
言語 Java
(openjdk 23)
結果
AC  
実行時間 306 ms / 5,000 ms
コード長 1,122 bytes
コンパイル時間 2,231 ms
コンパイル使用メモリ 78,296 KB
実行使用メモリ 47,096 KB
最終ジャッジ日時 2024-07-20 16:20:37
合計ジャッジ時間 11,200 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 102 ms
40,184 KB
testcase_01 AC 110 ms
41,312 KB
testcase_02 AC 109 ms
41,120 KB
testcase_03 AC 125 ms
41,412 KB
testcase_04 AC 108 ms
40,268 KB
testcase_05 AC 113 ms
40,344 KB
testcase_06 AC 119 ms
41,340 KB
testcase_07 AC 124 ms
41,544 KB
testcase_08 AC 282 ms
46,844 KB
testcase_09 AC 257 ms
44,644 KB
testcase_10 AC 239 ms
45,912 KB
testcase_11 AC 248 ms
46,788 KB
testcase_12 AC 306 ms
46,428 KB
testcase_13 AC 304 ms
46,940 KB
testcase_14 AC 166 ms
41,712 KB
testcase_15 AC 99 ms
40,232 KB
testcase_16 AC 198 ms
43,192 KB
testcase_17 AC 114 ms
40,808 KB
testcase_18 AC 170 ms
42,140 KB
testcase_19 AC 167 ms
41,900 KB
testcase_20 AC 203 ms
42,912 KB
testcase_21 AC 178 ms
42,260 KB
testcase_22 AC 146 ms
41,820 KB
testcase_23 AC 237 ms
46,048 KB
testcase_24 AC 251 ms
46,892 KB
testcase_25 AC 201 ms
42,960 KB
testcase_26 AC 172 ms
42,528 KB
testcase_27 AC 280 ms
47,096 KB
testcase_28 AC 129 ms
41,268 KB
testcase_29 AC 236 ms
45,668 KB
testcase_30 AC 183 ms
42,904 KB
testcase_31 AC 184 ms
44,632 KB
testcase_32 AC 277 ms
45,492 KB
testcase_33 AC 237 ms
44,276 KB
testcase_34 AC 251 ms
46,088 KB
testcase_35 AC 190 ms
45,512 KB
testcase_36 AC 213 ms
45,432 KB
testcase_37 AC 182 ms
44,936 KB
testcase_38 AC 151 ms
41,728 KB
testcase_39 AC 186 ms
42,340 KB
testcase_40 AC 183 ms
43,572 KB
testcase_41 AC 163 ms
42,000 KB
testcase_42 AC 112 ms
41,180 KB
testcase_43 AC 99 ms
40,188 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;
import java.awt.geom.*;
import java.io.*;

class Main {
	static int[] vx = {1,0,-1,0};
	static int[] vy = {0,1,0,-1};
	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()-1;
		}
		for(int i = 0; i < v; i++) {
			t[i] = sc.nextInt()-1;
		}
		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][c+1];
		for(int i = 0; i < n; i++) {
			Arrays.fill(dp[i], 2 << 28);
		}
		dp[0][0] = 0;
		for(int i = 0; i < n-1; i++) {
			for(int j = 0; j < c; j++) {
				for(int k = 0; k < v; k++) {
					if(s[k] != i || j + y[k] > c) continue;
					dp[t[k]][j + y[k]] = Math.min(dp[t[k]][j + y[k]],dp[i][j] + m[k]);
				}
			}
		}
		int min = dp[n-1][0];
		for(int i= 1; i <= c; i++) {
			min = Math.min(min, dp[n-1][i]);
		}
		System.out.println((min==2<<28?-1:min));
		
		
	}
}
0