結果

問題 No.1037 exhausted
ユーザー nanophoto12nanophoto12
提出日時 2020-07-24 14:25:04
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 38 ms / 2,000 ms
コード長 1,171 bytes
コンパイル時間 2,119 ms
コンパイル使用メモリ 207,060 KB
実行使用メモリ 34,560 KB
最終ジャッジ日時 2024-06-25 02:36:53
合計ジャッジ時間 3,418 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,816 KB
testcase_01 AC 2 ms
6,940 KB
testcase_02 AC 2 ms
6,944 KB
testcase_03 AC 2 ms
6,940 KB
testcase_04 AC 2 ms
6,940 KB
testcase_05 AC 2 ms
6,944 KB
testcase_06 AC 2 ms
6,940 KB
testcase_07 AC 2 ms
6,940 KB
testcase_08 AC 2 ms
6,940 KB
testcase_09 AC 2 ms
6,940 KB
testcase_10 AC 2 ms
6,944 KB
testcase_11 AC 3 ms
6,944 KB
testcase_12 AC 37 ms
34,432 KB
testcase_13 AC 37 ms
34,432 KB
testcase_14 AC 37 ms
34,432 KB
testcase_15 AC 38 ms
34,432 KB
testcase_16 AC 37 ms
34,304 KB
testcase_17 AC 38 ms
34,560 KB
testcase_18 AC 38 ms
34,432 KB
testcase_19 AC 38 ms
34,432 KB
testcase_20 AC 35 ms
34,432 KB
testcase_21 AC 36 ms
34,560 KB
testcase_22 AC 33 ms
34,560 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>

#define M_PI       3.14159265358979323846   // pi

using namespace std;
typedef long long ll;
typedef unsigned long long ull;
typedef vector<ll> VI;
typedef pair<ll, ll> P;
typedef tuple<ll, ll, ll> t3;
typedef tuple<ll, ll, ll, ll> t4;
typedef tuple<ll, ll, ll, ll, ll> t5;

#define rep(a,n) for(ll a = 0;a < n;a++)
#define repi(a,b,n) for(ll a = b;a < n;a++)

using namespace std;

static const ll INF = 1e15;

const ll mod = 1000000007;

template<typename T>
void chmin(T & ref, const T  value) {
	if (ref > value) ref = value;
}

int main() {
	ll n, v, l;
	cin >> n >> v >> l;
	vector<ll> xs(n+1, 0), vs(n+1,0), ws(n+1,0);
	rep(i, n) {
		cin >> xs[i+1] >> vs[i+1] >> ws[i+1];
	}
	vector<vector<ll>> dp(n + 1, vector<ll>(v + 1, INF));
	dp[0][v] = 0;
	rep(i, n) {
		ll d = xs[i + 1] - xs[i];
		rep(j, v + 1) {
			if (j >= d) {
				chmin(dp[i + 1][j - d], dp[i][j]);
				auto nv = min(v, j - d + vs[i + 1]);
				chmin(dp[i + 1][nv], dp[i][j] + ws[i + 1]);
			}
		}
	}
	ll low = INF;
	for (int j = l - xs[n]; j < v + 1;j++)  {
		chmin(low, dp[n][j]);
	}
	if (low == INF) {
		cout << -1 << endl;
	}
	else {
		cout << low << endl;
	}
	return 0;
}
0