結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 44 ms
36,892 KB
testcase_01 AC 46 ms
36,912 KB
testcase_02 AC 45 ms
36,656 KB
testcase_03 AC 44 ms
36,912 KB
testcase_04 AC 43 ms
36,916 KB
testcase_05 AC 43 ms
36,840 KB
testcase_06 AC 45 ms
37,064 KB
testcase_07 AC 45 ms
37,072 KB
testcase_08 AC 80 ms
38,212 KB
testcase_09 AC 76 ms
38,188 KB
testcase_10 AC 75 ms
37,940 KB
testcase_11 AC 70 ms
38,344 KB
testcase_12 AC 70 ms
38,248 KB
testcase_13 AC 94 ms
39,032 KB
testcase_14 AC 46 ms
36,900 KB
testcase_15 AC 43 ms
37,116 KB
testcase_16 AC 50 ms
36,916 KB
testcase_17 AC 42 ms
36,896 KB
testcase_18 AC 44 ms
37,040 KB
testcase_19 AC 45 ms
37,176 KB
testcase_20 AC 46 ms
36,920 KB
testcase_21 AC 45 ms
37,332 KB
testcase_22 AC 44 ms
36,932 KB
testcase_23 AC 72 ms
38,696 KB
testcase_24 AC 79 ms
38,424 KB
testcase_25 AC 50 ms
36,804 KB
testcase_26 AC 51 ms
36,888 KB
testcase_27 AC 71 ms
38,448 KB
testcase_28 AC 44 ms
37,120 KB
testcase_29 AC 64 ms
38,144 KB
testcase_30 AC 47 ms
37,092 KB
testcase_31 AC 52 ms
37,332 KB
testcase_32 AC 77 ms
38,244 KB
testcase_33 AC 73 ms
38,144 KB
testcase_34 AC 84 ms
38,600 KB
testcase_35 AC 54 ms
37,460 KB
testcase_36 AC 59 ms
38,256 KB
testcase_37 AC 53 ms
37,320 KB
testcase_38 AC 46 ms
36,956 KB
testcase_39 AC 47 ms
37,180 KB
testcase_40 AC 48 ms
36,932 KB
testcase_41 AC 45 ms
37,288 KB
testcase_42 AC 43 ms
37,232 KB
testcase_43 AC 43 ms
36,804 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] = 100000;
	    	  
	    	  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-100000);
	    	  }else{
	    		  System.out.println(-1);
	    	  }
	    	  
	      } catch (IOException e) {
			e.printStackTrace();
	      }
	}
}
0