結果

問題 No.1 道のショートカット
ユーザー yuki2006yuki2006
提出日時 2014-10-02 02:55:05
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 2,533 bytes
コンパイル時間 3,996 ms
コンパイル使用メモリ 76,152 KB
実行使用メモリ 61,336 KB
最終ジャッジ日時 2023-09-22 11:43:37
合計ジャッジ時間 13,024 ms
ジャッジサーバーID
(参考情報)
judge15 / judge11
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 127 ms
55,540 KB
testcase_01 AC 127 ms
55,768 KB
testcase_02 AC 126 ms
55,708 KB
testcase_03 AC 131 ms
55,720 KB
testcase_04 WA -
testcase_05 AC 126 ms
55,712 KB
testcase_06 AC 132 ms
56,064 KB
testcase_07 AC 142 ms
55,784 KB
testcase_08 AC 236 ms
60,396 KB
testcase_09 WA -
testcase_10 WA -
testcase_11 WA -
testcase_12 WA -
testcase_13 WA -
testcase_14 WA -
testcase_15 AC 126 ms
55,636 KB
testcase_16 WA -
testcase_17 AC 126 ms
55,852 KB
testcase_18 WA -
testcase_19 WA -
testcase_20 WA -
testcase_21 WA -
testcase_22 WA -
testcase_23 WA -
testcase_24 WA -
testcase_25 AC 185 ms
58,584 KB
testcase_26 WA -
testcase_27 WA -
testcase_28 WA -
testcase_29 WA -
testcase_30 WA -
testcase_31 WA -
testcase_32 WA -
testcase_33 WA -
testcase_34 WA -
testcase_35 WA -
testcase_36 WA -
testcase_37 WA -
testcase_38 WA -
testcase_39 WA -
testcase_40 WA -
testcase_41 WA -
testcase_42 AC 126 ms
55,536 KB
testcase_43 AC 125 ms
55,500 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Yuki001 {

    public static class Tuple {
        int cost;
        int time;

        Tuple(int cost, int time) {
            this.cost = cost;
            this.time = time;
        }
    }

    public static void main(String[] args) {


        ArrayList<Integer> si = new ArrayList<Integer>();
        ArrayList<Integer> ti = new ArrayList<Integer>();

        Scanner scanner = new Scanner(System.in);

        int N = scanner.nextInt();
        int C = scanner.nextInt();

        HashMap<Integer, ArrayList<Tuple>> map = new HashMap<>();


        int V = scanner.nextInt();
        int[] cost = new int[V + 1];


        for (int i = 0; i < V; i++) {
            si.add(scanner.nextInt());
        }
        for (int i = 0; i < V; i++) {
            ti.add(scanner.nextInt());
        }
        for (int i = 0; i < V; i++) {
            cost[i] = scanner.nextInt();
        }
        for (int i = 0; i < V; i++) {

            ArrayList<Tuple> tuples = map.get(si.get(i) * (N+1) + ti.get(i));
            if (tuples == null) {
                tuples = new ArrayList<>();
                map.put(ti.get(i) * (N + 1) + si.get(i), tuples);
            }
            tuples.add(new Tuple(cost[i], scanner.nextInt()));
        }


        int MAX = Integer.MAX_VALUE / 2;

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

        for (int i = 0; i < dp.length; i++) {
            Arrays.fill(dp[i], MAX);
        }
        dp[1][C] = 0;
        for (int i = 2; i < N + 1; i++) {
            for (int k = 1; k < i; k++) {
                final ArrayList<Tuple> tuples = map.get(i * (N + 1) + k);
                if (tuples == null) {
                    break;
                }
                for (int t = 0; t <= C; t++) {
                    if (dp[k][t] >= MAX) {
                        continue;
                    }
                    for (Tuple tuple : tuples) {

                        int c = t - tuple.cost;
                        if (c < 0) {
                            continue;
                        }
                        dp[i][c] = Math.min(dp[i][c], dp[k][t] + tuple.time);
                    }
                }
            }
        }

        int min = Integer.MAX_VALUE;
        for (int i = C; i >= 0; i--) {
            if (dp[N][i] != MAX) {
                min = Math.min(min, dp[N][i]);
            }
        }

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

        }

    }

}
0