結果

問題 No.1 道のショートカット
ユーザー mastersatoshimastersatoshi
提出日時 2015-07-29 22:55:55
言語 Java21
(openjdk 21)
結果
AC  
実行時間 172 ms / 5,000 ms
コード長 1,855 bytes
コンパイル時間 2,656 ms
コンパイル使用メモリ 77,608 KB
実行使用メモリ 40,696 KB
最終ジャッジ日時 2024-07-20 16:16:36
合計ジャッジ時間 7,280 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 53 ms
36,896 KB
testcase_01 AC 52 ms
36,728 KB
testcase_02 AC 51 ms
36,504 KB
testcase_03 AC 52 ms
36,804 KB
testcase_04 AC 53 ms
36,632 KB
testcase_05 AC 52 ms
36,788 KB
testcase_06 AC 52 ms
36,872 KB
testcase_07 AC 53 ms
36,980 KB
testcase_08 AC 116 ms
38,892 KB
testcase_09 AC 172 ms
40,696 KB
testcase_10 AC 102 ms
39,020 KB
testcase_11 AC 106 ms
39,236 KB
testcase_12 AC 125 ms
39,376 KB
testcase_13 AC 127 ms
39,244 KB
testcase_14 AC 62 ms
37,220 KB
testcase_15 AC 53 ms
37,064 KB
testcase_16 AC 92 ms
38,772 KB
testcase_17 AC 52 ms
36,784 KB
testcase_18 AC 91 ms
38,248 KB
testcase_19 AC 89 ms
38,836 KB
testcase_20 AC 112 ms
38,852 KB
testcase_21 AC 88 ms
38,544 KB
testcase_22 AC 94 ms
38,384 KB
testcase_23 AC 110 ms
39,104 KB
testcase_24 AC 111 ms
39,160 KB
testcase_25 AC 110 ms
39,088 KB
testcase_26 AC 103 ms
39,160 KB
testcase_27 AC 117 ms
39,068 KB
testcase_28 AC 53 ms
36,640 KB
testcase_29 AC 100 ms
39,316 KB
testcase_30 AC 59 ms
37,140 KB
testcase_31 AC 78 ms
37,944 KB
testcase_32 AC 107 ms
39,052 KB
testcase_33 AC 101 ms
39,080 KB
testcase_34 AC 104 ms
38,936 KB
testcase_35 AC 66 ms
37,852 KB
testcase_36 AC 97 ms
38,908 KB
testcase_37 AC 81 ms
38,244 KB
testcase_38 AC 56 ms
36,496 KB
testcase_39 AC 102 ms
38,720 KB
testcase_40 AC 82 ms
38,244 KB
testcase_41 AC 56 ms
37,044 KB
testcase_42 AC 53 ms
36,448 KB
testcase_43 AC 54 ms
36,660 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.io.*;
import java.util.*;

public class Main {

    public static void main(String[] args) throws Exception {

        BufferedReader br = new BufferedReader(new InputStreamReader(System.in));

        int N = Integer.parseInt(br.readLine());
        int C = Integer.parseInt(br.readLine());
        int V = Integer.parseInt(br.readLine());

        int[] S = convert(br.readLine().split(" "));//from
        int[] T = convert(br.readLine().split(" "));//to
        int[] Y = convert(br.readLine().split(" "));//費用
        int[] M = convert(br.readLine().split(" "));//時間

        int[][] min = new int[N + 1][C + 1];

        for (int i = 2; i <= N; i++) {
            Arrays.fill(min[i], Integer.MAX_VALUE);
        }

        for (int i = 1; i <= N; i++) {
            for (int j = 0; j < V; j++) {

                int tmpS = S[j];
                int tmpT = T[j];
                int tmpY = Y[j];
                int tmpM = M[j];

                for (int k = 0; k + tmpY <= C; k++) {

                    if (min[tmpS][k] != Integer.MAX_VALUE
                            && min[tmpS][k] + tmpM < min[tmpT][k + tmpY]) {

                        min[tmpT][k + tmpY] = min[tmpS][k] + tmpM;
                    }
                }
            }
        }

        int minTime = Integer.MAX_VALUE;

        for (int i = 0; i <= C; i++) {
            if (min[N][i] < minTime) {
                minTime = min[N][i];
            }
        }

        if (minTime == Integer.MAX_VALUE) {
            System.out.println(-1);
        } else {
            System.out.println(minTime);
        }
    }

    private static int[] convert(String[] source) {
        int[] dest = new int[source.length];

        for (int i = 0; i < source.length; i++) {
            dest[i] = Integer.parseInt(source[i]);
        }

        return dest;
    }
}
0