結果

問題 No.1037 exhausted
ユーザー iqueue02iqueue02
提出日時 2020-07-03 11:55:19
言語 C++17
(gcc 13.2.0 + boost 1.83.0)
結果
AC  
実行時間 19 ms / 2,000 ms
コード長 1,018 bytes
コンパイル時間 2,171 ms
コンパイル使用メモリ 207,300 KB
実行使用メモリ 4,356 KB
最終ジャッジ日時 2023-10-14 22:44:34
合計ジャッジ時間 3,096 ms
ジャッジサーバーID
(参考情報)
judge14 / judge11
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
4,352 KB
testcase_01 AC 1 ms
4,348 KB
testcase_02 AC 2 ms
4,352 KB
testcase_03 AC 1 ms
4,352 KB
testcase_04 AC 1 ms
4,348 KB
testcase_05 AC 2 ms
4,348 KB
testcase_06 AC 1 ms
4,352 KB
testcase_07 AC 1 ms
4,352 KB
testcase_08 AC 1 ms
4,356 KB
testcase_09 AC 1 ms
4,348 KB
testcase_10 AC 2 ms
4,348 KB
testcase_11 AC 1 ms
4,348 KB
testcase_12 AC 17 ms
4,348 KB
testcase_13 AC 18 ms
4,352 KB
testcase_14 AC 17 ms
4,348 KB
testcase_15 AC 17 ms
4,348 KB
testcase_16 AC 17 ms
4,352 KB
testcase_17 AC 17 ms
4,348 KB
testcase_18 AC 17 ms
4,348 KB
testcase_19 AC 17 ms
4,352 KB
testcase_20 AC 18 ms
4,348 KB
testcase_21 AC 19 ms
4,348 KB
testcase_22 AC 19 ms
4,348 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
#define rep(i,n) for(int i = 0; i < (n);i++)
#define sz(x) int(x.size())
typedef long long ll;
typedef long double ld;
typedef pair<int,int> P;
typedef pair<ll, int> PL;
constexpr ll INF = (1LL << 60);
typedef tuple<int,int,int> TP;

int main() {
  int n, V, L;
  cin >> n >> V >> L;
  vector<TP> g;
  for (int i = 0; i < n; i++) {
    int x, v, w;
    cin >> x >> v >> w;
    g.emplace_back(make_tuple(x, v, w));
  }
  g.emplace_back(make_tuple(L, 0, 0));

  vector<ll> dp(V + 1, INF);
  dp[V] = 0;
  int prev = 0;
  for (int i = 0; i < n + 1; i++) {
    int x, v, w;
    tie(x, v, w) = g[i];
    int dif = x - prev;
    for (int j = 0; j <= V; j++) {
      if (j - dif >= 0) dp[j - dif] = dp[j];
      if (j + dif > V) dp[j] = INF;
    }
    for (int j = V; j >= 0; j--) {
      int to = min(V, j + v);
      dp[to] = min(dp[to], dp[j] + w);
    }
    prev = x;
  }
  ll res = *min_element(dp.begin(), dp.end());
  cout << (res == INF ? -1 : res) << endl;
  return 0;
} 
0