結果

問題 No.1 道のショートカット
ユーザー 久我山菜々久我山菜々
提出日時 2018-09-29 14:56:08
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 3 ms / 5,000 ms
コード長 1,272 bytes
コンパイル時間 1,046 ms
コンパイル使用メモリ 91,896 KB
実行使用メモリ 4,384 KB
最終ジャッジ日時 2023-09-27 22:16:15
合計ジャッジ時間 2,661 ms
ジャッジサーバーID
(参考情報)
judge13 / judge14
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
4,376 KB
testcase_01 AC 1 ms
4,384 KB
testcase_02 AC 1 ms
4,380 KB
testcase_03 AC 1 ms
4,376 KB
testcase_04 AC 2 ms
4,376 KB
testcase_05 AC 1 ms
4,380 KB
testcase_06 AC 2 ms
4,380 KB
testcase_07 AC 1 ms
4,380 KB
testcase_08 AC 2 ms
4,376 KB
testcase_09 AC 2 ms
4,376 KB
testcase_10 AC 3 ms
4,380 KB
testcase_11 AC 2 ms
4,376 KB
testcase_12 AC 3 ms
4,380 KB
testcase_13 AC 3 ms
4,380 KB
testcase_14 AC 2 ms
4,376 KB
testcase_15 AC 1 ms
4,380 KB
testcase_16 AC 2 ms
4,380 KB
testcase_17 AC 2 ms
4,376 KB
testcase_18 AC 1 ms
4,380 KB
testcase_19 AC 1 ms
4,376 KB
testcase_20 AC 2 ms
4,376 KB
testcase_21 AC 2 ms
4,376 KB
testcase_22 AC 2 ms
4,376 KB
testcase_23 AC 3 ms
4,380 KB
testcase_24 AC 2 ms
4,376 KB
testcase_25 AC 2 ms
4,380 KB
testcase_26 AC 1 ms
4,380 KB
testcase_27 AC 3 ms
4,380 KB
testcase_28 AC 1 ms
4,380 KB
testcase_29 AC 2 ms
4,376 KB
testcase_30 AC 2 ms
4,376 KB
testcase_31 AC 2 ms
4,380 KB
testcase_32 AC 2 ms
4,380 KB
testcase_33 AC 2 ms
4,376 KB
testcase_34 AC 3 ms
4,380 KB
testcase_35 AC 2 ms
4,376 KB
testcase_36 AC 2 ms
4,376 KB
testcase_37 AC 2 ms
4,376 KB
testcase_38 AC 1 ms
4,380 KB
testcase_39 AC 2 ms
4,376 KB
testcase_40 AC 2 ms
4,380 KB
testcase_41 AC 1 ms
4,376 KB
testcase_42 AC 2 ms
4,376 KB
testcase_43 AC 2 ms
4,376 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<iostream>
#include<vector>
#include<map>
#include<algorithm>

static int const INF{100000000};

int main(int, char**) {
  int N, C, V;
  std::cin >> N >> C >> V;

  std::vector<int> ss(V), ts(V), ys(V),ms(V);
  for(int i{0}; i < V; ++i) {
    std::cin >> ss[i]; --ss[i];
  }
  for(int i{0}; i < V; ++i) {
    std::cin >> ts[i]; --ts[i];
  }
  for(int i{0}; i < V; ++i) {
    std::cin >> ys[i];
  }
  for(int i{0}; i < V; ++i) {
    std::cin >> ms[i];
  }

  std::vector<std::vector<std::tuple<int, int, int>>> e(N);
  for(int i{0}; i < V; ++i) {
    e[ss[i]].push_back(std::make_tuple(ts[i], ys[i], ms[i]));
  }

  std::vector<std::vector<int>> dp(N, std::vector(C + 1, INF));
  dp[0][C] = 0; // start: node 0, C cost ある。

  for(int i{}; i < N; ++i) {
    for(int j{}; j < C + 1; ++j) {
      if(dp[i][j] == INF) continue;
      for(auto k: e[i]) {
        int t{std::get<0>(k)}; // 移動先
        int nj{j - std::get<1>(k)}; // 残りcost
        int nd{dp[i][j] + std::get<2>(k)}; // 経過時間
        if(nj < 0) continue;
        dp[t][nj] = std::min(dp[t][nj], nd);
      }
    }
  }

  int ans{INF};
  for(int i{}; i < C + 1; ++i) {
    ans = std::min(ans, dp[N - 1][i]);
  }
  std::cout << ((ans == INF) ? -1 : ans) << std::endl;

  return 0;
}
0