結果

問題 No.1 道のショートカット
ユーザー chiho_miyakochiho_miyako
提出日時 2015-04-23 13:27:31
言語 Java
(openjdk 23)
結果
AC  
実行時間 243 ms / 5,000 ms
コード長 1,841 bytes
コンパイル時間 2,052 ms
コンパイル使用メモリ 77,324 KB
実行使用メモリ 46,340 KB
最終ジャッジ日時 2024-07-20 16:12:43
合計ジャッジ時間 11,277 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 130 ms
41,084 KB
testcase_01 AC 130 ms
41,104 KB
testcase_02 AC 117 ms
40,404 KB
testcase_03 AC 136 ms
40,972 KB
testcase_04 AC 135 ms
41,376 KB
testcase_05 AC 115 ms
40,316 KB
testcase_06 AC 139 ms
41,240 KB
testcase_07 AC 139 ms
41,284 KB
testcase_08 AC 223 ms
45,804 KB
testcase_09 AC 211 ms
44,544 KB
testcase_10 AC 217 ms
45,736 KB
testcase_11 AC 225 ms
45,856 KB
testcase_12 AC 235 ms
45,776 KB
testcase_13 AC 243 ms
45,992 KB
testcase_14 AC 175 ms
41,688 KB
testcase_15 AC 131 ms
41,180 KB
testcase_16 AC 194 ms
42,512 KB
testcase_17 AC 131 ms
41,160 KB
testcase_18 AC 174 ms
41,688 KB
testcase_19 AC 175 ms
42,004 KB
testcase_20 AC 192 ms
42,644 KB
testcase_21 AC 185 ms
42,112 KB
testcase_22 AC 166 ms
41,636 KB
testcase_23 AC 225 ms
46,340 KB
testcase_24 AC 229 ms
45,624 KB
testcase_25 AC 203 ms
42,672 KB
testcase_26 AC 185 ms
42,312 KB
testcase_27 AC 223 ms
45,768 KB
testcase_28 AC 134 ms
41,376 KB
testcase_29 AC 223 ms
45,488 KB
testcase_30 AC 188 ms
42,788 KB
testcase_31 AC 197 ms
44,324 KB
testcase_32 AC 209 ms
45,076 KB
testcase_33 AC 207 ms
43,888 KB
testcase_34 AC 228 ms
46,072 KB
testcase_35 AC 207 ms
45,424 KB
testcase_36 AC 215 ms
45,140 KB
testcase_37 AC 205 ms
44,716 KB
testcase_38 AC 155 ms
41,728 KB
testcase_39 AC 180 ms
41,964 KB
testcase_40 AC 196 ms
42,980 KB
testcase_41 AC 174 ms
41,856 KB
testcase_42 AC 130 ms
41,168 KB
testcase_43 AC 121 ms
39,936 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Main {
    public static void main(String[] args) throws Exception {
        Scanner koko = new Scanner(System.in);
        int n = koko.nextInt();
        int c = koko.nextInt();
        int v = koko.nextInt();
        int[] s = new int[v];
        int[] t = new int[v];
        int[] y = new int[v];
        int[] m = new int[v];
        for(int i=0; i<v; i++){
            s[i]=koko.nextInt();
        }
        for(int i=0; i<v; i++){
            t[i]=koko.nextInt();
        }
        for(int i=0; i<v; i++){
            y[i]=koko.nextInt();
        }
        for(int i=0; i<v; i++){
            m[i]=koko.nextInt();
        }
        boolean[][] stop = new boolean[n+1][c+1];
        int[][] stoptime = new int[n+1][c+1];
        stop[1][0]=true;
        stoptime[1][0]=0;
        for(int i=2; i<n+1; i++){
            for(int j=0; j<v; j++){
                if(i==t[j]){
                    for(int cost=0; cost<c+1-y[j]; cost++){
                        if(stop[s[j]][cost]){
                            if(stop[i][cost+y[j]]){
                                stoptime[i][cost+y[j]]=Math.min(stoptime[i][cost+y[j]], stoptime[s[j]][cost]+m[j]);
                            }else{
                                stop[i][cost+y[j]]=true;
                                stoptime[i][cost+y[j]]=stoptime[s[j]][cost]+m[j];
                            }
                        }
                    }
                }
            }
        }
        boolean flag = false;
        int min = n*1000;
        for(int cost=0; cost<c+1; cost++){
            if(stop[n][cost]){
                flag = true;
                min=Math.min(min, stoptime[n][cost]);
            }
        }
        if(flag){
            System.out.println(min);
        }else{
            System.out.println(-1);
        }
    }
}
0