結果
問題 | No.1037 exhausted |
ユーザー | iqueue02 |
提出日時 | 2020-07-03 11:55:19 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
AC
|
実行時間 | 17 ms / 2,000 ms |
コード長 | 1,018 bytes |
コンパイル時間 | 2,233 ms |
コンパイル使用メモリ | 209,644 KB |
実行使用メモリ | 5,376 KB |
最終ジャッジ日時 | 2024-09-16 16:19:59 |
合計ジャッジ時間 | 3,167 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
5,248 KB |
testcase_01 | AC | 2 ms
5,376 KB |
testcase_02 | AC | 2 ms
5,376 KB |
testcase_03 | AC | 1 ms
5,376 KB |
testcase_04 | AC | 2 ms
5,376 KB |
testcase_05 | AC | 2 ms
5,376 KB |
testcase_06 | AC | 2 ms
5,376 KB |
testcase_07 | AC | 1 ms
5,376 KB |
testcase_08 | AC | 2 ms
5,376 KB |
testcase_09 | AC | 2 ms
5,376 KB |
testcase_10 | AC | 1 ms
5,376 KB |
testcase_11 | AC | 2 ms
5,376 KB |
testcase_12 | AC | 13 ms
5,376 KB |
testcase_13 | AC | 14 ms
5,376 KB |
testcase_14 | AC | 14 ms
5,376 KB |
testcase_15 | AC | 13 ms
5,376 KB |
testcase_16 | AC | 14 ms
5,376 KB |
testcase_17 | AC | 14 ms
5,376 KB |
testcase_18 | AC | 13 ms
5,376 KB |
testcase_19 | AC | 13 ms
5,376 KB |
testcase_20 | AC | 16 ms
5,376 KB |
testcase_21 | AC | 16 ms
5,376 KB |
testcase_22 | AC | 17 ms
5,376 KB |
ソースコード
#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; }