結果

問題 No.951 【本日限定】1枚頼むともう1枚無料!
ユーザー misora192misora192
提出日時 2020-04-30 08:24:11
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 1,077 bytes
コンパイル時間 1,786 ms
コンパイル使用メモリ 174,564 KB
実行使用メモリ 6,948 KB
最終ジャッジ日時 2024-05-08 08:39:50
合計ジャッジ時間 5,535 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
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 2 ms
5,376 KB
testcase_04 AC 2 ms
5,376 KB
testcase_05 AC 2 ms
5,376 KB
testcase_06 WA -
testcase_07 AC 2 ms
5,376 KB
testcase_08 WA -
testcase_09 WA -
testcase_10 WA -
testcase_11 WA -
testcase_12 WA -
testcase_13 AC 50 ms
5,376 KB
testcase_14 WA -
testcase_15 WA -
testcase_16 WA -
testcase_17 WA -
testcase_18 AC 2 ms
5,376 KB
testcase_19 AC 2 ms
5,376 KB
testcase_20 AC 2 ms
5,376 KB
testcase_21 AC 3 ms
5,376 KB
testcase_22 WA -
testcase_23 WA -
testcase_24 AC 71 ms
5,376 KB
testcase_25 WA -
testcase_26 WA -
testcase_27 WA -
testcase_28 WA -
testcase_29 WA -
testcase_30 AC 2 ms
5,376 KB
testcase_31 AC 2 ms
5,376 KB
testcase_32 AC 2 ms
5,376 KB
testcase_33 WA -
testcase_34 AC 3 ms
5,376 KB
testcase_35 AC 70 ms
5,376 KB
testcase_36 AC 70 ms
5,376 KB
testcase_37 AC 70 ms
5,376 KB
testcase_38 AC 70 ms
5,376 KB
testcase_39 WA -
testcase_40 AC 69 ms
5,376 KB
testcase_41 AC 68 ms
5,376 KB
testcase_42 AC 69 ms
5,376 KB
testcase_43 AC 69 ms
5,376 KB
testcase_44 WA -
testcase_45 WA -
testcase_46 AC 61 ms
5,376 KB
testcase_47 AC 61 ms
5,376 KB
testcase_48 AC 62 ms
5,376 KB
testcase_49 AC 61 ms
5,376 KB
testcase_50 WA -
testcase_51 WA -
testcase_52 AC 57 ms
5,376 KB
testcase_53 AC 70 ms
5,376 KB
testcase_54 AC 51 ms
5,376 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
#define rep(i,n) for(int i=(0);i<(n);i++)

using namespace std;

typedef long long ll;
typedef pair<int, int> pii;

int main(){
	cin.tie(0);
	ios::sync_with_stdio(false);

	int n, k;
	cin >> n >> k;

	vector<pii> v(n);
	rep(i, n) cin >> v[i].first >> v[i].second;

	sort(v.begin(), v.end(), [](pii a, pii b){
		if(a.first != b.first) return a.first > b.first;
		return a.second > b.second;
	});

	int INF = 1e9;
	int dp[2][k + 1][2];
	rep(i, 2) rep(j, k + 1) rep(l, 2) dp[i][j][l] = -INF;
	dp[0][k][0] = 0;

	rep(i, n) {
		rep(j, k + 1) rep(l, 2) dp[(i+1) % 2][j][l] = -INF;
		
		int p = v[i].first;
		int d = v[i].second;
		rep(j, k + 1){
			
			// 購入なし
			dp[(i+1) % 2][j][0] = max(dp[(i+1) % 2][j][0], dp[i%2][j][0]);

			// 購入
			if(j >= p) dp[(i+1) % 2][j - p][1] = max(dp[(i+1) % 2][j - p][1], dp[i%2][j][0] + d);

			// ただでもらう
			dp[(i+1) % 2][j][0] = max(dp[(i+1) % 2][j][0], dp[i%2][j][1] + d);
		}
	}

	int ans = -INF;
	rep(j, k + 1){
		ans = max({ans, dp[n % 2][j][0], dp[n % 2][j][1]});
	}

	cout << ans << endl;

}
0