結果

問題 No.1037 exhausted
ユーザー iqueue02iqueue02
提出日時 2020-07-03 11:46:31
言語 C++17
(gcc 13.2.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 1,034 bytes
コンパイル時間 2,201 ms
コンパイル使用メモリ 206,420 KB
実行使用メモリ 4,484 KB
最終ジャッジ日時 2023-10-14 22:44:31
合計ジャッジ時間 3,858 ms
ジャッジサーバーID
(参考情報)
judge15 / judge14
このコードへのチャレンジ(β)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
4,352 KB
testcase_01 AC 2 ms
4,348 KB
testcase_02 WA -
testcase_03 AC 2 ms
4,352 KB
testcase_04 WA -
testcase_05 AC 1 ms
4,352 KB
testcase_06 WA -
testcase_07 WA -
testcase_08 AC 1 ms
4,348 KB
testcase_09 WA -
testcase_10 WA -
testcase_11 WA -
testcase_12 WA -
testcase_13 WA -
testcase_14 WA -
testcase_15 WA -
testcase_16 WA -
testcase_17 WA -
testcase_18 WA -
testcase_19 WA -
testcase_20 AC 14 ms
4,352 KB
testcase_21 AC 14 ms
4,352 KB
testcase_22 AC 13 ms
4,352 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];
      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 = INF;
  for (int i = V; i >= 0; i--) {
    res = min(res, dp[i]);
  }
  cout << (res == INF ? -1 : res) << endl;
  return 0;
} 
0