結果

問題 No.951 【本日限定】1枚頼むともう1枚無料!
ユーザー chocoruskchocorusk
提出日時 2019-12-14 00:09:01
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 210 ms / 2,000 ms
コード長 1,301 bytes
コンパイル時間 1,226 ms
コンパイル使用メモリ 116,884 KB
実行使用メモリ 200,960 KB
最終ジャッジ日時 2024-06-27 22:54:01
合計ジャッジ時間 8,563 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 2 ms
5,376 KB
testcase_02 AC 3 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 AC 2 ms
5,376 KB
testcase_07 AC 3 ms
5,376 KB
testcase_08 AC 2 ms
5,376 KB
testcase_09 AC 8 ms
10,624 KB
testcase_10 AC 6 ms
7,424 KB
testcase_11 AC 8 ms
8,832 KB
testcase_12 AC 35 ms
47,616 KB
testcase_13 AC 161 ms
176,896 KB
testcase_14 AC 22 ms
29,952 KB
testcase_15 AC 23 ms
35,072 KB
testcase_16 AC 37 ms
54,528 KB
testcase_17 AC 81 ms
83,328 KB
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 5 ms
6,784 KB
testcase_22 AC 4 ms
5,376 KB
testcase_23 AC 4 ms
5,760 KB
testcase_24 AC 206 ms
200,832 KB
testcase_25 AC 208 ms
200,832 KB
testcase_26 AC 202 ms
200,832 KB
testcase_27 AC 201 ms
200,960 KB
testcase_28 AC 188 ms
200,832 KB
testcase_29 AC 189 ms
200,832 KB
testcase_30 AC 2 ms
5,376 KB
testcase_31 AC 2 ms
5,376 KB
testcase_32 AC 4 ms
5,376 KB
testcase_33 AC 4 ms
6,016 KB
testcase_34 AC 6 ms
7,424 KB
testcase_35 AC 205 ms
200,832 KB
testcase_36 AC 206 ms
200,832 KB
testcase_37 AC 210 ms
200,960 KB
testcase_38 AC 209 ms
200,832 KB
testcase_39 AC 209 ms
200,832 KB
testcase_40 AC 203 ms
200,832 KB
testcase_41 AC 203 ms
200,832 KB
testcase_42 AC 201 ms
200,960 KB
testcase_43 AC 203 ms
200,960 KB
testcase_44 AC 201 ms
200,960 KB
testcase_45 AC 201 ms
200,832 KB
testcase_46 AC 189 ms
200,832 KB
testcase_47 AC 188 ms
200,960 KB
testcase_48 AC 195 ms
200,832 KB
testcase_49 AC 187 ms
200,704 KB
testcase_50 AC 188 ms
200,832 KB
testcase_51 AC 189 ms
200,832 KB
testcase_52 AC 167 ms
200,448 KB
testcase_53 AC 183 ms
200,832 KB
testcase_54 AC 174 ms
200,832 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <cstdio>
#include <cstring>
#include <iostream>
#include <string>
#include <cmath>
#include <bitset>
#include <vector>
#include <map>
#include <set>
#include <queue>
#include <deque>
#include <algorithm>
#include <complex>
#include <unordered_map>
#include <unordered_set>
#include <random>
#include <cassert>
#include <fstream>
#include <utility>
#include <functional>
#include <time.h>
#include <stack>
#include <array>
#define popcount __builtin_popcount
using namespace std;
typedef long long int ll;
typedef pair<int, int> P;
int dp[2][5050][5050];
int main()
{
	int n, k;
	cin>>n>>k;
	vector<P> v(n);
	for(int i=0; i<n; i++){
		cin>>v[i].first>>v[i].second;
	}
	sort(v.begin(), v.end(), greater<P>());
	for(int i=0; i<=n; i++) for(int j=0; j<=k; j++) dp[0][i][j]=dp[1][i][j]=-1;
	dp[0][0][0]=0;
	for(int i=0; i<n; i++){
		for(int j=0; j<=k; j++){
			dp[0][i+1][j]=max(dp[0][i+1][j], dp[0][i][j]);
			dp[1][i+1][j]=max(dp[1][i+1][j], dp[1][i][j]);
			if(dp[0][i][j]>=0 && j+v[i].first<=k){
				dp[1][i+1][j+v[i].first]=max(dp[1][i+1][j+v[i].first], dp[0][i][j]+v[i].second);
			}
			if(dp[1][i][j]>=0){
				dp[0][i+1][j]=max(dp[0][i+1][j], dp[1][i][j]+v[i].second);
			}
		}
	}
	int ans=0;
	for(int i=0; i<=k; i++) ans=max({ans, dp[0][n][i], dp[1][n][i]});
	cout<<ans<<endl;
	return 0;
}
0