結果

問題 No.1 道のショートカット
ユーザー chiho_miyakochiho_miyako
提出日時 2015-04-18 11:43:57
言語 Java21
(openjdk 21)
結果
MLE  
実行時間 -
コード長 1,546 bytes
コンパイル時間 1,672 ms
コンパイル使用メモリ 76,952 KB
実行使用メモリ 767,324 KB
最終ジャッジ日時 2024-07-08 03:52:29
合計ジャッジ時間 23,269 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 95 ms
41,576 KB
testcase_01 AC 99 ms
41,428 KB
testcase_02 AC 96 ms
41,124 KB
testcase_03 AC 117 ms
41,100 KB
testcase_04 AC 108 ms
41,228 KB
testcase_05 AC 108 ms
41,464 KB
testcase_06 AC 117 ms
41,236 KB
testcase_07 AC 118 ms
41,664 KB
testcase_08 AC 491 ms
179,144 KB
testcase_09 MLE -
testcase_10 MLE -
testcase_11 AC 796 ms
179,572 KB
testcase_12 MLE -
testcase_13 MLE -
testcase_14 AC 884 ms
346,964 KB
testcase_15 AC 125 ms
48,064 KB
testcase_16 MLE -
testcase_17 AC 185 ms
57,596 KB
testcase_18 AC 219 ms
57,936 KB
testcase_19 AC 230 ms
66,896 KB
testcase_20 AC 313 ms
98,024 KB
testcase_21 AC 281 ms
75,448 KB
testcase_22 AC 189 ms
52,248 KB
testcase_23 AC 877 ms
99,628 KB
testcase_24 AC 924 ms
125,816 KB
testcase_25 AC 313 ms
73,756 KB
testcase_26 AC 248 ms
56,588 KB
testcase_27 AC 1,494 ms
247,308 KB
testcase_28 AC 135 ms
42,276 KB
testcase_29 AC 327 ms
67,048 KB
testcase_30 AC 192 ms
44,376 KB
testcase_31 AC 223 ms
46,448 KB
testcase_32 MLE -
testcase_33 MLE -
testcase_34 MLE -
testcase_35 AC 274 ms
54,220 KB
testcase_36 MLE -
testcase_37 AC 437 ms
118,344 KB
testcase_38 AC 503 ms
176,540 KB
testcase_39 MLE -
testcase_40 AC 957 ms
302,716 KB
testcase_41 AC 334 ms
99,220 KB
testcase_42 AC 133 ms
42,708 KB
testcase_43 AC 142 ms
51,912 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();
       }
       int tm=0;
       for(int i=0; i<v; i++){
           m[i]=koko.nextInt();
           tm=tm+m[i];
       }
       boolean[][][] judge = new boolean[n+1][c+1][tm+1];
       judge[1][0][0]=true;
       for(int i=0; i<c; i++){
           for(int j=0; j<n+1; j++){
               for(int k=0; k<tm+1; k++){
                   if(judge[j][i][k]){
                       for(int l=0; l<v; l++){
                           if(j==s[l]&&i+y[l]<=c){
                               judge[t[l]][i+y[l]][k+m[l]]=true;
                           }
                       }
                   }
               }
           }
       }
       boolean wflag = false;
loop1: for(int i=0; i<tm+1; i++){
           for(int j=0; j<c+1; j++){
               if(judge[n][j][i]){
                   wflag=true;
                   System.out.println(i);
                   break loop1;
               }
           }
       }
       if(!wflag){
           System.out.println(-1);
       }
   }
}
0