結果

問題 No.1 道のショートカット
ユーザー t8m8⛄️t8m8⛄️
提出日時 2015-04-03 06:55:38
言語 Java21
(openjdk 21)
結果
AC  
実行時間 249 ms / 5,000 ms
コード長 2,476 bytes
コンパイル時間 3,807 ms
コンパイル使用メモリ 78,932 KB
実行使用メモリ 46,280 KB
最終ジャッジ日時 2024-07-20 16:12:14
合計ジャッジ時間 13,434 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 133 ms
41,224 KB
testcase_01 AC 136 ms
41,212 KB
testcase_02 AC 135 ms
41,216 KB
testcase_03 AC 141 ms
41,236 KB
testcase_04 AC 121 ms
40,256 KB
testcase_05 AC 138 ms
41,112 KB
testcase_06 AC 143 ms
41,396 KB
testcase_07 AC 147 ms
41,428 KB
testcase_08 AC 217 ms
45,788 KB
testcase_09 AC 222 ms
44,456 KB
testcase_10 AC 222 ms
45,332 KB
testcase_11 AC 232 ms
45,968 KB
testcase_12 AC 239 ms
45,792 KB
testcase_13 AC 246 ms
46,144 KB
testcase_14 AC 176 ms
41,732 KB
testcase_15 AC 136 ms
41,408 KB
testcase_16 AC 191 ms
42,548 KB
testcase_17 AC 137 ms
41,348 KB
testcase_18 AC 178 ms
42,124 KB
testcase_19 AC 177 ms
41,828 KB
testcase_20 AC 195 ms
42,844 KB
testcase_21 AC 186 ms
42,300 KB
testcase_22 AC 171 ms
41,624 KB
testcase_23 AC 249 ms
46,188 KB
testcase_24 AC 238 ms
46,192 KB
testcase_25 AC 194 ms
42,456 KB
testcase_26 AC 189 ms
42,280 KB
testcase_27 AC 232 ms
45,820 KB
testcase_28 AC 142 ms
41,364 KB
testcase_29 AC 235 ms
45,844 KB
testcase_30 AC 200 ms
42,900 KB
testcase_31 AC 210 ms
44,288 KB
testcase_32 AC 225 ms
44,996 KB
testcase_33 AC 206 ms
43,736 KB
testcase_34 AC 222 ms
46,280 KB
testcase_35 AC 217 ms
45,272 KB
testcase_36 AC 220 ms
45,128 KB
testcase_37 AC 211 ms
44,528 KB
testcase_38 AC 159 ms
41,572 KB
testcase_39 AC 190 ms
41,944 KB
testcase_40 AC 201 ms
42,980 KB
testcase_41 AC 190 ms
41,892 KB
testcase_42 AC 137 ms
41,096 KB
testcase_43 AC 137 ms
41,432 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

//No.1 道のショートカット

import java.util.*;
import java.io.*;
import static java.util.Arrays.*;
import static java.lang.Math.*;

public class No1 {
    
    static final Scanner sc = new Scanner(System.in);
    static final PrintWriter out = new PrintWriter(System.out,false);

    static void solve() {
        int n = sc.nextInt();
        int c = sc.nextInt();
        int v = sc.nextInt();
        int[] from = new int[v];
        int[] to = new int[v];
        int[] cost = new int[v];
        int[] time = new int[v];
        for (int i=0; i<v; i++) from[i] = sc.nextInt()-1;
        for (int i=0; i<v; i++) to[i] = sc.nextInt()-1;
        for (int i=0; i<v; i++) cost[i] = sc.nextInt();
        for (int i=0; i<v; i++) time[i] = sc.nextInt();

        int[][][] cg = toAdjacencyList(n,from,to,cost);
        int[][][] tg = toAdjacencyList(n,from,to,time);

        int[][] dp = new int[n][c+1];
        for (int i=0; i<n; i++) fill(dp[i],Integer.MAX_VALUE);
        dp[0][0] = 0;
        for (int i=0; i<n; i++) {
            for (int j=0; j<=c; j++) {
                if (dp[i][j] == Integer.MAX_VALUE) continue;
                for (int k=0; k<cg[i].length; k++) {
                    int next = cg[i][k][0];
                    int ncost = cg[i][k][1];
                    int ntime = tg[i][k][1];
                    if (j + ncost <= c) {
                        dp[next][j+ncost] = min(dp[next][j+ncost], dp[i][j]+ntime);
                    }
                }
            }
        }

        int min = Integer.MAX_VALUE;
        for (int i=0; i<=c; i++) {
            min = min(min,dp[n-1][i]);
        }
        out.println(min==Integer.MAX_VALUE?"-1":min);
    }

    static int[][][] toAdjacencyList(int n,int[] from, int[] to, int[] cost) {
        int[] cnt = new int[n];
        for (int i : from) cnt[i]++;
    
        int[][][] g = new int[n][][];
        for (int i=0; i<n; i++) g[i] = new int[cnt[i]][2];
        for (int i=0; i<from.length; i++) {
            int f = from[i];
            int t = to[i];
            g[f][--cnt[f]][0] = t;
            g[f][cnt[f]][1] = cost[i];
        }
    
        return g;
    }

    public static void main(String[] args) {
        long start = System.currentTimeMillis();

        solve();
        out.flush();

        long end = System.currentTimeMillis();
        //trace(end-start + "ms");
        sc.close();
    }

    static void trace(Object... o) { System.out.println(deepToString(o));}
}
0