結果

問題 No.1 道のショートカット
ユーザー takeya_okinotakeya_okino
提出日時 2017-06-16 22:11:06
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 2,009 bytes
コンパイル時間 2,196 ms
コンパイル使用メモリ 74,756 KB
実行使用メモリ 61,296 KB
最終ジャッジ日時 2023-09-22 13:11:41
合計ジャッジ時間 11,629 ms
ジャッジサーバーID
(参考情報)
judge11 / judge12
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 WA -
testcase_02 WA -
testcase_03 WA -
testcase_04 AC 123 ms
55,920 KB
testcase_05 WA -
testcase_06 WA -
testcase_07 AC 139 ms
55,972 KB
testcase_08 AC 232 ms
59,908 KB
testcase_09 WA -
testcase_10 WA -
testcase_11 RE -
testcase_12 RE -
testcase_13 RE -
testcase_14 WA -
testcase_15 WA -
testcase_16 WA -
testcase_17 WA -
testcase_18 WA -
testcase_19 WA -
testcase_20 WA -
testcase_21 WA -
testcase_22 WA -
testcase_23 RE -
testcase_24 RE -
testcase_25 RE -
testcase_26 RE -
testcase_27 RE -
testcase_28 WA -
testcase_29 RE -
testcase_30 RE -
testcase_31 RE -
testcase_32 RE -
testcase_33 RE -
testcase_34 RE -
testcase_35 RE -
testcase_36 RE -
testcase_37 RE -
testcase_38 WA -
testcase_39 WA -
testcase_40 RE -
testcase_41 WA -
testcase_42 AC 123 ms
55,532 KB
testcase_43 AC 125 ms
55,932 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];
    int[][] cost = new int[N][N];
    int[][] time = new int[N][N];
    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[k][j + e.cost] != -1) {
              if(min == -1) {
                min = dp[k][j + e.cost] + e.time;
              } else {
                min = Math.min(min, dp[k][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