結果

問題 No.1 道のショートカット
ユーザー tentententen
提出日時 2020-10-22 16:46:21
言語 Java
(openjdk 23)
結果
AC  
実行時間 364 ms / 5,000 ms
コード長 2,488 bytes
コンパイル時間 2,503 ms
コンパイル使用メモリ 79,452 KB
実行使用メモリ 49,040 KB
最終ジャッジ日時 2024-07-21 09:19:53
合計ジャッジ時間 11,759 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 111 ms
41,112 KB
testcase_01 AC 114 ms
40,856 KB
testcase_02 AC 103 ms
40,232 KB
testcase_03 AC 115 ms
41,276 KB
testcase_04 AC 102 ms
40,168 KB
testcase_05 AC 112 ms
40,796 KB
testcase_06 AC 111 ms
40,488 KB
testcase_07 AC 119 ms
41,340 KB
testcase_08 AC 243 ms
46,028 KB
testcase_09 AC 194 ms
44,432 KB
testcase_10 AC 222 ms
46,224 KB
testcase_11 AC 255 ms
45,880 KB
testcase_12 AC 348 ms
48,188 KB
testcase_13 AC 355 ms
48,488 KB
testcase_14 AC 163 ms
41,308 KB
testcase_15 AC 107 ms
40,272 KB
testcase_16 AC 180 ms
42,532 KB
testcase_17 AC 116 ms
41,012 KB
testcase_18 AC 153 ms
41,436 KB
testcase_19 AC 143 ms
41,472 KB
testcase_20 AC 185 ms
42,988 KB
testcase_21 AC 164 ms
41,848 KB
testcase_22 AC 133 ms
41,520 KB
testcase_23 AC 311 ms
49,040 KB
testcase_24 AC 339 ms
48,892 KB
testcase_25 AC 195 ms
42,952 KB
testcase_26 AC 195 ms
42,728 KB
testcase_27 AC 326 ms
47,096 KB
testcase_28 AC 126 ms
41,204 KB
testcase_29 AC 254 ms
46,916 KB
testcase_30 AC 186 ms
43,100 KB
testcase_31 AC 229 ms
46,472 KB
testcase_32 AC 260 ms
47,424 KB
testcase_33 AC 218 ms
44,524 KB
testcase_34 AC 364 ms
48,996 KB
testcase_35 AC 189 ms
45,276 KB
testcase_36 AC 213 ms
45,452 KB
testcase_37 AC 195 ms
45,392 KB
testcase_38 AC 148 ms
41,636 KB
testcase_39 AC 165 ms
42,256 KB
testcase_40 AC 177 ms
42,908 KB
testcase_41 AC 161 ms
41,720 KB
testcase_42 AC 109 ms
39,936 KB
testcase_43 AC 104 ms
39,936 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Main {
    public static void main(String[] args) {
        Scanner sc = new Scanner(System.in);
        int n = sc.nextInt();
        int c = sc.nextInt();
        int v = sc.nextInt();
        int[] starts = new int[v];
        for (int i = 0; i < v; i++) {
            starts[i] = sc.nextInt() - 1;
        }
        int[] terminals = new int[v];
        for (int i = 0; i < v; i++) {
            terminals[i] = sc.nextInt() - 1;
        }
        int[] yen = new int[v];
        for (int i = 0; i < v; i++) {
            yen[i] = sc.nextInt();
        }
        int[] mins = new int[v];
        for (int i = 0; i < v; i++) {
            mins[i] = sc.nextInt();
        }
        ArrayList<ArrayList<Route>> graph = new ArrayList<>();
        for (int i = 0; i < n; i++) {
            graph.add(new ArrayList<>());
        }
        for (int i = 0; i < v; i++) {
            graph.get(starts[i]).add(new Route(terminals[i], yen[i], mins[i]));
        }
        int[][] costs = new int[n][c + 1];
        for (int[] arr : costs) {
            Arrays.fill(arr, Integer.MAX_VALUE);
        }
        PriorityQueue<Path> queue = new PriorityQueue<>();
        queue.add(new Path(0, 0, c));
        while (queue.size() > 0) {
            Path p = queue.poll();
            if (p.yen < 0 || costs[p.idx][p.yen] <= p.value) {
                continue;
            }
            costs[p.idx][p.yen] = p.value;
            for (Route r : graph.get(p.idx)) {
                queue.add(new Path(r.idx, p.value + r.value, p.yen - r.yen));
            }
        }
        int ans = Integer.MAX_VALUE;
        for (int x : costs[n - 1]) {
            ans = Math.min(ans, x);
        }
        if (ans == Integer.MAX_VALUE) {
            System.out.println(-1);
        } else {
            System.out.println(ans);
        }
    }
    
    
    static class Path implements Comparable<Path> {
        int idx;
        int value;
        int yen;
        
        public Path(int idx, int value, int yen) {
            this.idx = idx;
            this.value = value;
            this.yen = yen;
        }
        
        public int compareTo(Path another) {
            return value - another.value;
        }
    }
    
    static class Route {
        int idx;
        int yen;
        int value;
        
        public Route(int idx, int yen, int value) {
            this.idx = idx;
            this.yen = yen;
            this.value = value;
        }
    }
}
0