結果

問題 No.1 道のショートカット
ユーザー CrazyBBBCrazyBBB
提出日時 2016-03-05 19:08:42
言語 Java21
(openjdk 21)
結果
AC  
実行時間 325 ms / 5,000 ms
コード長 1,579 bytes
コンパイル時間 2,372 ms
コンパイル使用メモリ 76,816 KB
実行使用メモリ 47,300 KB
最終ジャッジ日時 2024-07-20 16:22:23
合計ジャッジ時間 12,606 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 133 ms
41,384 KB
testcase_01 AC 127 ms
41,328 KB
testcase_02 AC 128 ms
41,552 KB
testcase_03 AC 132 ms
41,504 KB
testcase_04 AC 119 ms
40,672 KB
testcase_05 AC 127 ms
41,156 KB
testcase_06 AC 136 ms
41,432 KB
testcase_07 AC 139 ms
41,344 KB
testcase_08 AC 325 ms
47,300 KB
testcase_09 AC 301 ms
45,812 KB
testcase_10 AC 273 ms
46,860 KB
testcase_11 AC 294 ms
47,120 KB
testcase_12 AC 313 ms
47,012 KB
testcase_13 AC 322 ms
47,064 KB
testcase_14 AC 173 ms
41,700 KB
testcase_15 AC 131 ms
41,584 KB
testcase_16 AC 232 ms
42,852 KB
testcase_17 AC 131 ms
41,492 KB
testcase_18 AC 170 ms
41,672 KB
testcase_19 AC 178 ms
41,796 KB
testcase_20 AC 221 ms
42,592 KB
testcase_21 AC 213 ms
41,936 KB
testcase_22 AC 166 ms
41,584 KB
testcase_23 AC 283 ms
47,012 KB
testcase_24 AC 285 ms
47,160 KB
testcase_25 AC 222 ms
42,716 KB
testcase_26 AC 206 ms
42,688 KB
testcase_27 AC 291 ms
46,952 KB
testcase_28 AC 143 ms
41,588 KB
testcase_29 AC 247 ms
46,424 KB
testcase_30 AC 202 ms
43,184 KB
testcase_31 AC 218 ms
44,436 KB
testcase_32 AC 292 ms
45,812 KB
testcase_33 AC 234 ms
44,080 KB
testcase_34 AC 303 ms
46,564 KB
testcase_35 AC 209 ms
45,192 KB
testcase_36 AC 231 ms
45,540 KB
testcase_37 AC 212 ms
45,088 KB
testcase_38 AC 158 ms
41,796 KB
testcase_39 AC 212 ms
42,100 KB
testcase_40 AC 211 ms
43,120 KB
testcase_41 AC 190 ms
42,044 KB
testcase_42 AC 117 ms
40,172 KB
testcase_43 AC 116 ms
40,192 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