結果

問題 No.1 道のショートカット
ユーザー takeya_okinotakeya_okino
提出日時 2017-06-16 22:43:50
言語 Java
(openjdk 23)
結果
AC  
実行時間 235 ms / 5,000 ms
コード長 1,947 bytes
コンパイル時間 2,353 ms
コンパイル使用メモリ 78,028 KB
実行使用メモリ 47,172 KB
最終ジャッジ日時 2024-07-20 16:31:21
合計ジャッジ時間 10,343 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 110 ms
41,064 KB
testcase_01 AC 99 ms
40,040 KB
testcase_02 AC 111 ms
40,900 KB
testcase_03 AC 121 ms
41,268 KB
testcase_04 AC 101 ms
40,120 KB
testcase_05 AC 122 ms
41,224 KB
testcase_06 AC 123 ms
41,532 KB
testcase_07 AC 117 ms
40,980 KB
testcase_08 AC 210 ms
46,508 KB
testcase_09 AC 187 ms
45,348 KB
testcase_10 AC 201 ms
46,244 KB
testcase_11 AC 210 ms
46,756 KB
testcase_12 AC 235 ms
47,172 KB
testcase_13 AC 224 ms
47,068 KB
testcase_14 AC 148 ms
41,784 KB
testcase_15 AC 108 ms
40,096 KB
testcase_16 AC 194 ms
42,928 KB
testcase_17 AC 125 ms
41,212 KB
testcase_18 AC 168 ms
42,100 KB
testcase_19 AC 148 ms
41,844 KB
testcase_20 AC 178 ms
42,664 KB
testcase_21 AC 173 ms
42,152 KB
testcase_22 AC 152 ms
41,544 KB
testcase_23 AC 210 ms
46,360 KB
testcase_24 AC 215 ms
46,208 KB
testcase_25 AC 173 ms
42,908 KB
testcase_26 AC 176 ms
42,556 KB
testcase_27 AC 212 ms
45,900 KB
testcase_28 AC 116 ms
41,172 KB
testcase_29 AC 206 ms
45,884 KB
testcase_30 AC 177 ms
42,720 KB
testcase_31 AC 184 ms
44,756 KB
testcase_32 AC 203 ms
45,076 KB
testcase_33 AC 190 ms
44,444 KB
testcase_34 AC 218 ms
46,048 KB
testcase_35 AC 189 ms
45,248 KB
testcase_36 AC 192 ms
45,320 KB
testcase_37 AC 182 ms
44,564 KB
testcase_38 AC 147 ms
41,828 KB
testcase_39 AC 165 ms
42,416 KB
testcase_40 AC 182 ms
43,024 KB
testcase_41 AC 170 ms
42,020 KB
testcase_42 AC 114 ms
41,292 KB
testcase_43 AC 125 ms
41,488 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Main {
  public static void main(String[] args) {
    Scanner sc = new Scanner(System.in);
    int N = sc.nextInt();
    int C = sc.nextInt();
    int V = sc.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] = sc.nextInt() - 1;
    }
    for(int i = 0; i < V; i++) {
      t[i] = sc.nextInt() - 1;
    }
    for(int i = 0; i < V; i++) {
      y[i] = sc.nextInt();
    }
    for(int i = 0; i < V; i++) {
      m[i] = sc.nextInt();
    }
    ArrayList<Edge>[] edge = new ArrayList[N];
    for(int i = 0; i < N; i++) {
      edge[i] = new ArrayList<Edge>();
    }
    for(int i = 0; i < V; i++) {
      Edge e = new Edge(s[i], t[i], y[i], m[i]);
      edge[t[i]].add(e);
    }
    // dp[i][j]は頂点iで金額j円持っている状態に行く最小時間を表す(不可能なら-1とする)
    int[][] dp = new int[N][C + 1];
    for(int j = 0; j < C; j++) {
      dp[0][j] = -1;
    }
    for(int i = 1; i < N; i++) {
      for(int j = 0; j < C + 1; j++) {
        int min = -1;
        for(int k = 0; k < edge[i].size(); k++) {
          Edge e = edge[i].get(k);
          if(j + e.cost < C + 1) {
            if(dp[e.s][j + e.cost] != -1) {
              if(min == -1) {
                min = dp[e.s][j + e.cost] + e.time;
              } else {
                min = Math.min(min, dp[e.s][j + e.cost] + e.time);
              }
            }
          }
        }
        dp[i][j] = min;
      }
    }
    int ans = Integer.MAX_VALUE;
    for(int j = 0; j < C + 1; j++) {
      if(dp[N - 1][j] > 0) ans = Math.min(ans, dp[N - 1][j]);
    }
    if(ans == Integer.MAX_VALUE) ans = -1;
    System.out.println(ans);
  }
}

class Edge {
  int s;
  int t;
  int cost;
  int time;
  Edge(int s, int t, int cost, int time) {
    this.s = s;
    this.t = t;
    this.cost = cost;
    this.time = time;
  }
}
0