結果

問題 No.1 道のショートカット
ユーザー yuki2006yuki2006
提出日時 2014-10-11 03:17:28
言語 Java21
(openjdk 21)
結果
AC  
実行時間 247 ms / 5,000 ms
コード長 2,797 bytes
コンパイル時間 5,432 ms
コンパイル使用メモリ 86,852 KB
実行使用メモリ 48,468 KB
最終ジャッジ日時 2024-07-20 16:06:22
合計ジャッジ時間 12,757 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 103 ms
40,276 KB
testcase_01 AC 114 ms
40,248 KB
testcase_02 AC 104 ms
40,308 KB
testcase_03 AC 122 ms
41,308 KB
testcase_04 AC 117 ms
41,468 KB
testcase_05 AC 111 ms
41,076 KB
testcase_06 AC 118 ms
41,420 KB
testcase_07 AC 122 ms
41,900 KB
testcase_08 AC 226 ms
46,864 KB
testcase_09 AC 199 ms
45,928 KB
testcase_10 AC 203 ms
46,004 KB
testcase_11 AC 227 ms
46,164 KB
testcase_12 AC 247 ms
48,468 KB
testcase_13 AC 242 ms
47,048 KB
testcase_14 AC 154 ms
42,068 KB
testcase_15 AC 114 ms
40,920 KB
testcase_16 AC 176 ms
42,804 KB
testcase_17 AC 114 ms
41,204 KB
testcase_18 AC 157 ms
41,808 KB
testcase_19 AC 153 ms
41,840 KB
testcase_20 AC 179 ms
43,120 KB
testcase_21 AC 159 ms
42,024 KB
testcase_22 AC 135 ms
41,692 KB
testcase_23 AC 223 ms
46,564 KB
testcase_24 AC 225 ms
47,156 KB
testcase_25 AC 181 ms
44,208 KB
testcase_26 AC 159 ms
42,492 KB
testcase_27 AC 217 ms
47,056 KB
testcase_28 AC 120 ms
41,084 KB
testcase_29 AC 223 ms
45,748 KB
testcase_30 AC 175 ms
42,932 KB
testcase_31 AC 190 ms
44,440 KB
testcase_32 AC 205 ms
47,024 KB
testcase_33 AC 194 ms
45,064 KB
testcase_34 AC 221 ms
47,104 KB
testcase_35 AC 199 ms
45,400 KB
testcase_36 AC 197 ms
45,624 KB
testcase_37 AC 186 ms
44,876 KB
testcase_38 AC 145 ms
41,560 KB
testcase_39 AC 175 ms
42,656 KB
testcase_40 AC 178 ms
43,164 KB
testcase_41 AC 155 ms
42,324 KB
testcase_42 AC 135 ms
41,400 KB
testcase_43 AC 131 ms
41,272 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Yuki001 {

    public static class Tuple implements Comparable<Tuple> {
        int cost;
        int time;

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

        @Override
        public int compareTo(Tuple o) {
            return -Integer.compare(cost, o.cost);
        }
    }

    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++) {

            final int key = ti.get(i) * (N + 1) + si.get(i);
            ArrayList<Tuple> tuples = map.get(key);
            if (tuples == null) {
                tuples = new ArrayList<>();
                map.put(key, 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) {
                    continue;
                }
                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