結果

問題 No.951 【本日限定】1枚頼むともう1枚無料!
ユーザー 東前頭十一枚目東前頭十一枚目
提出日時 2019-12-19 11:02:24
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 120 ms / 2,000 ms
コード長 889 bytes
コンパイル時間 1,782 ms
コンパイル使用メモリ 173,344 KB
実行使用メモリ 199,760 KB
最終ジャッジ日時 2024-07-07 01:02:59
合計ジャッジ時間 7,492 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 87 ms
199,520 KB
testcase_01 AC 89 ms
199,620 KB
testcase_02 AC 88 ms
199,468 KB
testcase_03 AC 88 ms
199,564 KB
testcase_04 AC 87 ms
199,584 KB
testcase_05 AC 86 ms
199,628 KB
testcase_06 AC 85 ms
199,600 KB
testcase_07 AC 87 ms
199,580 KB
testcase_08 AC 88 ms
199,524 KB
testcase_09 AC 89 ms
199,572 KB
testcase_10 AC 89 ms
199,520 KB
testcase_11 AC 89 ms
199,496 KB
testcase_12 AC 96 ms
199,512 KB
testcase_13 AC 120 ms
199,596 KB
testcase_14 AC 91 ms
199,572 KB
testcase_15 AC 100 ms
199,472 KB
testcase_16 AC 72 ms
199,620 KB
testcase_17 AC 67 ms
199,616 KB
testcase_18 AC 53 ms
199,504 KB
testcase_19 AC 51 ms
199,392 KB
testcase_20 AC 52 ms
199,592 KB
testcase_21 AC 53 ms
199,488 KB
testcase_22 AC 53 ms
199,576 KB
testcase_23 AC 52 ms
199,472 KB
testcase_24 AC 98 ms
199,544 KB
testcase_25 AC 96 ms
199,484 KB
testcase_26 AC 98 ms
199,600 KB
testcase_27 AC 109 ms
199,592 KB
testcase_28 AC 93 ms
199,452 KB
testcase_29 AC 92 ms
199,608 KB
testcase_30 AC 52 ms
199,560 KB
testcase_31 AC 51 ms
199,608 KB
testcase_32 AC 51 ms
199,676 KB
testcase_33 AC 52 ms
199,512 KB
testcase_34 AC 52 ms
199,704 KB
testcase_35 AC 95 ms
199,608 KB
testcase_36 AC 95 ms
199,716 KB
testcase_37 AC 97 ms
199,552 KB
testcase_38 AC 97 ms
199,676 KB
testcase_39 AC 96 ms
199,648 KB
testcase_40 AC 97 ms
199,536 KB
testcase_41 AC 96 ms
199,628 KB
testcase_42 AC 97 ms
199,524 KB
testcase_43 AC 104 ms
199,704 KB
testcase_44 AC 98 ms
199,440 KB
testcase_45 AC 99 ms
199,636 KB
testcase_46 AC 92 ms
199,536 KB
testcase_47 AC 92 ms
199,664 KB
testcase_48 AC 91 ms
199,520 KB
testcase_49 AC 96 ms
199,604 KB
testcase_50 AC 91 ms
199,548 KB
testcase_51 AC 91 ms
199,632 KB
testcase_52 AC 94 ms
199,572 KB
testcase_53 AC 96 ms
199,624 KB
testcase_54 AC 85 ms
199,760 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;

const int MAX = 5010;
int dp[MAX][MAX][2];
int main() {
	int N, K; cin >> N >> K;
	pair<int, int> p[N];
	for(int i = 0; i < N; ++i) {
		cin >> p[i].first >> p[i].second;
	}
	sort(p, p + N);
	reverse(p, p + N);
	for(int i = 0; i < MAX; ++i) {
		for(int j = 0; j < MAX; ++j) {
			for(int k = 0; k < 2; ++k) {
				dp[i][j][k] = -1e9;
			}
		}
	}
	dp[0][0][0] = 0;
	for(int i = 1; i <= N; ++i) {
		int cos, val;
		tie(cos, val) = p[i - 1];
		for(int j = 0; j <= K; ++j) {
			dp[i][j][0] = dp[i - 1][j][0];
			dp[i][j][0] = max(dp[i][j][0], dp[i - 1][j][1] + val);
			dp[i][j][1] = dp[i - 1][j][1];
			if(j - cos >= 0) {
				dp[i][j][1] = max(dp[i][j][1], dp[i - 1][j - cos][0] + val);
			}
		}
	}
	int ans = 0;
	for(int j = 0; j <= K; ++j) {
		for(int k = 0; k < 2; ++k) {
			ans = max(ans, dp[N][j][k]);
		}
	}
	cout << ans << '\n';
	return 0;
}
0