結果

問題 No.1 道のショートカット
ユーザー k_kadorak_kadora
提出日時 2015-06-15 02:32:59
言語 Java21
(openjdk 21)
結果
AC  
実行時間 299 ms / 5,000 ms
コード長 1,141 bytes
コンパイル時間 3,357 ms
コンパイル使用メモリ 77,164 KB
実行使用メモリ 47,024 KB
最終ジャッジ日時 2024-07-20 16:16:17
合計ジャッジ時間 12,337 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 110 ms
41,260 KB
testcase_01 AC 107 ms
41,072 KB
testcase_02 AC 103 ms
39,996 KB
testcase_03 AC 121 ms
41,388 KB
testcase_04 AC 99 ms
40,144 KB
testcase_05 AC 98 ms
40,016 KB
testcase_06 AC 117 ms
41,404 KB
testcase_07 AC 118 ms
41,444 KB
testcase_08 AC 261 ms
45,916 KB
testcase_09 AC 254 ms
45,880 KB
testcase_10 AC 222 ms
46,440 KB
testcase_11 AC 258 ms
46,796 KB
testcase_12 AC 293 ms
46,776 KB
testcase_13 AC 299 ms
46,780 KB
testcase_14 AC 155 ms
41,632 KB
testcase_15 AC 108 ms
41,012 KB
testcase_16 AC 189 ms
43,068 KB
testcase_17 AC 108 ms
41,244 KB
testcase_18 AC 168 ms
42,084 KB
testcase_19 AC 165 ms
41,892 KB
testcase_20 AC 192 ms
42,656 KB
testcase_21 AC 175 ms
42,468 KB
testcase_22 AC 154 ms
41,788 KB
testcase_23 AC 251 ms
45,912 KB
testcase_24 AC 236 ms
46,000 KB
testcase_25 AC 208 ms
43,372 KB
testcase_26 AC 170 ms
42,496 KB
testcase_27 AC 290 ms
47,024 KB
testcase_28 AC 117 ms
40,700 KB
testcase_29 AC 204 ms
45,904 KB
testcase_30 AC 189 ms
43,068 KB
testcase_31 AC 184 ms
44,612 KB
testcase_32 AC 236 ms
44,872 KB
testcase_33 AC 210 ms
44,020 KB
testcase_34 AC 227 ms
46,980 KB
testcase_35 AC 189 ms
45,260 KB
testcase_36 AC 213 ms
45,660 KB
testcase_37 AC 194 ms
44,888 KB
testcase_38 AC 149 ms
41,852 KB
testcase_39 AC 177 ms
42,348 KB
testcase_40 AC 175 ms
43,348 KB
testcase_41 AC 153 ms
42,000 KB
testcase_42 AC 113 ms
40,852 KB
testcase_43 AC 95 ms
39,528 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;
public class Yuki1{
	public static void main(String[] arg){
		Scanner sc = new Scanner(System.in);
		int n,c,v,res = 50000;
		boolean find=false;
		n = sc.nextInt();
		c = sc.nextInt();
		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];
		dp[1][0] = 1;
		for(int i = 0;i<n+1;i++){
			for(int j = 0;j<c+1;j++){
				dp[i][j] = 50000;
			}
		}
		dp[1][0] = 0;
		for(int i = 1;i<n;i++){
			for(int j = 0;j<v;j++){
				for(int k = 0;k<=c-y[j];k++){
					if(dp[i][k] != 50000 && s[j] == i && dp[t[j]][k+y[j]] > dp[i][k] + m[j]){
						dp[t[j]][k+y[j]] = dp[i][k] + m[j];
					}
				}
			}
		}
		for(int i = 0; i<c+1;i++){
			if(dp[n][i] != 0){
				if(res > dp[n][i]){
					res = dp[n][i];
					find = true;
				}
			}
		}
		if(find){
			System.out.println(res);
		}else{
			System.out.println(-1);
		}
	}
}
0