結果

問題 No.1 道のショートカット
ユーザー DAZYDAZY
提出日時 2017-05-15 10:47:42
言語 Java21
(openjdk 21)
結果
AC  
実行時間 296 ms / 5,000 ms
コード長 2,162 bytes
コンパイル時間 3,249 ms
コンパイル使用メモリ 77,760 KB
実行使用メモリ 47,180 KB
最終ジャッジ日時 2024-07-20 16:30:08
合計ジャッジ時間 11,887 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 111 ms
41,412 KB
testcase_01 AC 114 ms
41,072 KB
testcase_02 AC 112 ms
41,176 KB
testcase_03 AC 116 ms
41,540 KB
testcase_04 AC 110 ms
41,172 KB
testcase_05 AC 114 ms
41,308 KB
testcase_06 AC 122 ms
41,924 KB
testcase_07 AC 127 ms
41,424 KB
testcase_08 AC 238 ms
46,160 KB
testcase_09 AC 188 ms
44,524 KB
testcase_10 AC 213 ms
45,824 KB
testcase_11 AC 232 ms
46,776 KB
testcase_12 AC 296 ms
46,852 KB
testcase_13 AC 295 ms
47,180 KB
testcase_14 AC 153 ms
41,856 KB
testcase_15 AC 103 ms
40,500 KB
testcase_16 AC 168 ms
42,968 KB
testcase_17 AC 122 ms
41,100 KB
testcase_18 AC 147 ms
41,928 KB
testcase_19 AC 148 ms
41,728 KB
testcase_20 AC 192 ms
42,968 KB
testcase_21 AC 170 ms
42,120 KB
testcase_22 AC 138 ms
42,060 KB
testcase_23 AC 240 ms
46,488 KB
testcase_24 AC 227 ms
46,568 KB
testcase_25 AC 199 ms
43,056 KB
testcase_26 AC 166 ms
42,236 KB
testcase_27 AC 240 ms
46,032 KB
testcase_28 AC 122 ms
41,336 KB
testcase_29 AC 210 ms
46,360 KB
testcase_30 AC 180 ms
42,952 KB
testcase_31 AC 189 ms
44,664 KB
testcase_32 AC 202 ms
45,220 KB
testcase_33 AC 194 ms
44,692 KB
testcase_34 AC 228 ms
46,316 KB
testcase_35 AC 185 ms
45,384 KB
testcase_36 AC 197 ms
46,148 KB
testcase_37 AC 185 ms
45,376 KB
testcase_38 AC 135 ms
41,560 KB
testcase_39 AC 143 ms
42,092 KB
testcase_40 AC 168 ms
43,024 KB
testcase_41 AC 153 ms
41,984 KB
testcase_42 AC 101 ms
39,904 KB
testcase_43 AC 107 ms
40,108 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class No1 {
    static final int INF = Integer.MAX_VALUE;
    public static void main (String[] args) {
        Scanner scan = new Scanner(System.in);

        int N = scan.nextInt();
        int C = scan.nextInt();
        int V = scan.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] = scan.nextInt();
        for (int i = 0; i < V; i++) T[i] = scan.nextInt();
        for (int i = 0; i < V; i++) Y[i] = scan.nextInt();
        for (int i = 0; i < V; i++) M[i] = scan.nextInt();

        //わかりやすいように、n番目の街までに残金cで行くときの最小時間をmin_t[n][c+1]とする
        int[][] min_t = new int[N + 1][C + 1];
        for (int i = 1; i < N + 1; i++) {
            for (int j = 0; j < C + 1; j++) {
                min_t[i][j] = INF;
            }
        }
        //1番目の街は残金はMAXかつかかる時間は0
        min_t[1][C] = 0;

        //N番目の街はゴールなので探索しなくてもいい
        for (int i = 1; i < N; i++) {
            for (int j = 0; j < C + 1; j++) {
                //min_tがINFならその街に道はつながっていないので飛ばして良い
                if (min_t[i][j] != INF) {
                    for (int k = 0; k < V; k++) {
                        //道のリストに自分から出る道があり、かつその道を使った場合所持金がマイナスにならなければ最小時間を更新する
                        if ((S[k] == i) && (j - Y[k] >= 0)) {
                            min_t[T[k]][j - Y[k]] = Math.min(min_t[T[k]][j - Y[k]], min_t[i][j] + M[k]);
                        }
                    }
                }
            }
        }

        //N番目の街に行ける経路で最小時間のものを選択
        int ans = INF;
        for (int i = 0; i < C + 1; i++) ans = Math.min(ans, min_t[N][i]);
        //INFのままなら道がないということなので-1を代入
        if (ans == INF) ans = -1;

        System.out.print(ans);
    }
}
0