結果

問題 No.1 道のショートカット
ユーザー kuramukuramu
提出日時 2016-01-29 18:41:47
言語 Java21
(openjdk 21)
結果
AC  
実行時間 96 ms / 5,000 ms
コード長 1,898 bytes
コンパイル時間 1,906 ms
コンパイル使用メモリ 77,540 KB
実行使用メモリ 39,292 KB
最終ジャッジ日時 2024-07-20 16:19:44
合計ジャッジ時間 5,544 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 44 ms
36,988 KB
testcase_01 AC 44 ms
36,628 KB
testcase_02 AC 44 ms
37,084 KB
testcase_03 AC 46 ms
37,100 KB
testcase_04 AC 45 ms
36,712 KB
testcase_05 AC 46 ms
36,824 KB
testcase_06 AC 45 ms
36,652 KB
testcase_07 AC 44 ms
36,784 KB
testcase_08 AC 81 ms
38,388 KB
testcase_09 AC 80 ms
38,412 KB
testcase_10 AC 77 ms
38,308 KB
testcase_11 AC 70 ms
38,420 KB
testcase_12 AC 95 ms
39,292 KB
testcase_13 AC 96 ms
39,220 KB
testcase_14 AC 45 ms
36,732 KB
testcase_15 AC 44 ms
37,076 KB
testcase_16 AC 49 ms
37,040 KB
testcase_17 AC 44 ms
37,076 KB
testcase_18 AC 46 ms
37,288 KB
testcase_19 AC 45 ms
37,160 KB
testcase_20 AC 51 ms
37,236 KB
testcase_21 AC 47 ms
37,292 KB
testcase_22 AC 47 ms
36,720 KB
testcase_23 AC 81 ms
38,512 KB
testcase_24 AC 82 ms
38,244 KB
testcase_25 AC 51 ms
37,052 KB
testcase_26 AC 49 ms
37,264 KB
testcase_27 AC 81 ms
38,156 KB
testcase_28 AC 46 ms
36,832 KB
testcase_29 AC 77 ms
38,344 KB
testcase_30 AC 48 ms
37,224 KB
testcase_31 AC 52 ms
37,168 KB
testcase_32 AC 85 ms
38,688 KB
testcase_33 AC 63 ms
38,028 KB
testcase_34 AC 95 ms
39,152 KB
testcase_35 AC 56 ms
37,140 KB
testcase_36 AC 68 ms
37,888 KB
testcase_37 AC 52 ms
37,492 KB
testcase_38 AC 46 ms
36,956 KB
testcase_39 AC 47 ms
37,264 KB
testcase_40 AC 52 ms
36,784 KB
testcase_41 AC 47 ms
37,100 KB
testcase_42 AC 43 ms
37,096 KB
testcase_43 AC 46 ms
36,888 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.io.BufferedReader;
import java.io.IOException;
import java.io.InputStreamReader;
import java.util.Arrays;

public class Main {
	public static void main(String[] args) {
	      BufferedReader stdReader =new BufferedReader(new InputStreamReader(System.in));
	      try {
	    	  int N = Integer.parseInt(stdReader.readLine());
	    	  int C = Integer.parseInt(stdReader.readLine());
	    	  int V = Integer.parseInt(stdReader.readLine());
	    	  String[] temp1 = stdReader.readLine().split(" ");
	    	  String[] temp2 = stdReader.readLine().split(" ");
	    	  String[] temp3 = stdReader.readLine().split(" ");
	    	  String[] temp4 = stdReader.readLine().split(" ");
	    	  int[] S = new int[V+1];
	    	  int[] T = new int[V+1];
	    	  int[] Y = new int[V+1];
	    	  int[] M = new int[V+1];
	    	  
	    	  for(int i=1;i<V+1;i++){
	    		  S[i] = Integer.parseInt(temp1[i-1]);
	    		  T[i] = Integer.parseInt(temp2[i-1]);
	    		  Y[i] = Integer.parseInt(temp3[i-1]);
	    		  M[i] = Integer.parseInt(temp4[i-1]);
	    	  }
	    	  int[][] dp = new int[N+1][C+1];

	    	  for(int i=1;i<N+1;i++){
	    		  Arrays.fill(dp[i], Integer.MAX_VALUE);
	    	  }
	    	  dp[1][C] = 0;
	    	  
	    	  for(int i=1;i<N+1;i++){
	    		  for(int j=1;j<V+1;j++){
	    			  if(S[j] == i){
		    			  for(int k=0;k<C+1;k++){
		    				  if(dp[i][k]!=Integer.MAX_VALUE && k-Y[j]>=0){
		    					  if(dp[T[j]][k-Y[j]] > dp[i][k]+M[j]){
		    						  dp[T[j]][k-Y[j]] = dp[i][k]+M[j];
		    					  }
		    				  }
		    			  }
	    			  }
	    		  }
	    	  }    	  
	    	  int ans = Integer.MAX_VALUE;
	    	  for(int i=0;i<C+1;i++){
	    		  ans = Math.min(ans,dp[N][i]);
	    	  }
	    	  if(ans != Integer.MAX_VALUE){
	    		  System.out.println(ans);
	    	  }else{
	    		  System.out.println(-1);
	    	  }
	    	  
	      } catch (IOException e) {
			e.printStackTrace();
	      }
	}
}
0