結果

問題 No.1 道のショートカット
ユーザー 37zigen37zigen
提出日時 2016-03-28 17:24:11
言語 Java
(openjdk 23)
結果
AC  
実行時間 243 ms / 5,000 ms
コード長 1,498 bytes
コンパイル時間 2,149 ms
コンパイル使用メモリ 78,684 KB
実行使用メモリ 47,252 KB
最終ジャッジ日時 2024-07-20 16:22:38
合計ジャッジ時間 10,425 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 104 ms
40,700 KB
testcase_01 AC 115 ms
41,372 KB
testcase_02 AC 110 ms
41,336 KB
testcase_03 AC 114 ms
41,156 KB
testcase_04 AC 115 ms
41,048 KB
testcase_05 AC 103 ms
40,364 KB
testcase_06 AC 116 ms
41,428 KB
testcase_07 AC 118 ms
41,324 KB
testcase_08 AC 233 ms
46,756 KB
testcase_09 AC 200 ms
46,112 KB
testcase_10 AC 213 ms
46,064 KB
testcase_11 AC 213 ms
46,912 KB
testcase_12 AC 243 ms
46,732 KB
testcase_13 AC 227 ms
47,252 KB
testcase_14 AC 149 ms
41,860 KB
testcase_15 AC 122 ms
40,668 KB
testcase_16 AC 176 ms
43,936 KB
testcase_17 AC 120 ms
41,380 KB
testcase_18 AC 168 ms
42,036 KB
testcase_19 AC 173 ms
41,960 KB
testcase_20 AC 185 ms
43,016 KB
testcase_21 AC 177 ms
42,532 KB
testcase_22 AC 136 ms
41,984 KB
testcase_23 AC 216 ms
46,120 KB
testcase_24 AC 229 ms
46,424 KB
testcase_25 AC 188 ms
43,228 KB
testcase_26 AC 179 ms
42,444 KB
testcase_27 AC 210 ms
46,996 KB
testcase_28 AC 118 ms
41,344 KB
testcase_29 AC 205 ms
46,000 KB
testcase_30 AC 172 ms
42,620 KB
testcase_31 AC 183 ms
44,296 KB
testcase_32 AC 211 ms
45,772 KB
testcase_33 AC 198 ms
44,188 KB
testcase_34 AC 223 ms
45,852 KB
testcase_35 AC 185 ms
45,412 KB
testcase_36 AC 205 ms
45,504 KB
testcase_37 AC 185 ms
44,904 KB
testcase_38 AC 138 ms
41,880 KB
testcase_39 AC 170 ms
43,008 KB
testcase_40 AC 173 ms
42,916 KB
testcase_41 AC 158 ms
42,052 KB
testcase_42 AC 112 ms
41,216 KB
testcase_43 AC 107 ms
41,256 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.ArrayList;
import java.util.Arrays;
import java.util.List;
import java.util.Scanner;
public class Main {
 public static void main(String[] args){
  Scanner sc=new Scanner(System.in);
  int n=sc.nextInt();//the num of cities
  int c=sc.nextInt();//money
  int v=sc.nextInt();//the num of roads
  int[] s=new int[v];//s->t
  int[] t=new int[v];
  int[] y=new int[v];//cost
  int[] m=new int[v];//time
  int INF=Integer.MAX_VALUE/4;
  for(int i=0;i<v;i++){
   s[i]=sc.nextInt();
  }
  for(int i=0;i<v;i++){
   t[i]=sc.nextInt();
  }
  for(int i=0;i<v;i++){
   y[i]=sc.nextInt();
  }
  for(int i=0;i<v;i++){
   m[i]=sc.nextInt();
  }
  
  List<List<Triple>> edges=new ArrayList<List<Triple>>();
  for(int i=0;i<n;i++){
   edges.add(new ArrayList<Triple>());
  }
  for(int i=0;i<v;i++){
   edges.get(s[i]-1).add(new Triple(t[i]-1,y[i],m[i]));
  }
  int[][] dp=new int[n][c+1];
  for(int i=0;i<n;i++){
   Arrays.fill(dp[i],INF);
  }
  dp[0][0]=0;
  
  for(int i=0;i<n;i++){
   for(int j=0;j<=c;j++){
    for(Triple e:edges.get(i)){
     if(j+e.b<=c)//a:to,b:money,c:time
      dp[e.a][j+e.b]=Math.min(dp[e.a][j+e.b], dp[i][j]+e.c);
//     dp[道の終端][費用]=時間
    }
   }
  }
  int min=INF;
  for(int i=0;i<=c;i++){
   min=Math.min(dp[n-1][i],min);
  }
  if(min==INF){
   System.out.println(-1);
  }else{
   System.out.println(min);
  }
  sc.close();
 }
 private static class Triple{
  int a,b,c;
  Triple(int a,int b,int c){
   this.a=a;
   this.b=b;
   this.c=c;
  }
 }
}

0