結果

問題 No.951 【本日限定】1枚頼むともう1枚無料!
ユーザー kyort0nkyort0n
提出日時 2019-12-18 23:18:07
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 140 ms / 2,000 ms
コード長 1,477 bytes
コンパイル時間 1,479 ms
コンパイル使用メモリ 174,404 KB
実行使用メモリ 199,040 KB
最終ジャッジ日時 2024-07-06 23:03:03
合計ジャッジ時間 7,160 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 51 ms
198,872 KB
testcase_01 AC 53 ms
198,740 KB
testcase_02 AC 53 ms
198,800 KB
testcase_03 AC 51 ms
198,792 KB
testcase_04 AC 51 ms
198,732 KB
testcase_05 AC 52 ms
198,788 KB
testcase_06 AC 52 ms
198,708 KB
testcase_07 AC 51 ms
198,728 KB
testcase_08 AC 51 ms
198,700 KB
testcase_09 AC 52 ms
198,824 KB
testcase_10 AC 52 ms
198,748 KB
testcase_11 AC 53 ms
198,732 KB
testcase_12 AC 61 ms
198,852 KB
testcase_13 AC 85 ms
198,972 KB
testcase_14 AC 56 ms
198,876 KB
testcase_15 AC 59 ms
198,732 KB
testcase_16 AC 63 ms
198,888 KB
testcase_17 AC 66 ms
198,848 KB
testcase_18 AC 51 ms
198,760 KB
testcase_19 AC 51 ms
198,844 KB
testcase_20 AC 50 ms
198,920 KB
testcase_21 AC 51 ms
198,724 KB
testcase_22 AC 51 ms
198,864 KB
testcase_23 AC 51 ms
198,716 KB
testcase_24 AC 95 ms
198,884 KB
testcase_25 AC 98 ms
198,888 KB
testcase_26 AC 103 ms
198,848 KB
testcase_27 AC 99 ms
198,840 KB
testcase_28 AC 113 ms
198,852 KB
testcase_29 AC 113 ms
198,976 KB
testcase_30 AC 54 ms
198,828 KB
testcase_31 AC 53 ms
198,700 KB
testcase_32 AC 55 ms
198,912 KB
testcase_33 AC 55 ms
198,728 KB
testcase_34 AC 54 ms
198,828 KB
testcase_35 AC 99 ms
198,784 KB
testcase_36 AC 96 ms
198,756 KB
testcase_37 AC 97 ms
198,868 KB
testcase_38 AC 96 ms
198,868 KB
testcase_39 AC 93 ms
198,928 KB
testcase_40 AC 98 ms
198,908 KB
testcase_41 AC 99 ms
198,836 KB
testcase_42 AC 102 ms
198,908 KB
testcase_43 AC 99 ms
198,948 KB
testcase_44 AC 101 ms
198,980 KB
testcase_45 AC 100 ms
198,920 KB
testcase_46 AC 122 ms
198,864 KB
testcase_47 AC 118 ms
198,780 KB
testcase_48 AC 116 ms
198,860 KB
testcase_49 AC 117 ms
198,912 KB
testcase_50 AC 113 ms
198,852 KB
testcase_51 AC 113 ms
198,904 KB
testcase_52 AC 88 ms
199,040 KB
testcase_53 AC 98 ms
198,912 KB
testcase_54 AC 140 ms
198,820 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
typedef long long ll;
typedef pair<ll, ll> l_l;
typedef pair<int, int> i_i;
template<class T>
inline bool chmax(T &a, T b) {
    if(a < b) {
        a = b;
        return true;
    }
    return false;
}

template<class T>
inline bool chmin(T &a, T b) {
    if(a > b) {
        a = b;
        return true;
    }
    return false;
}

#define EPS (1e-7)
#define INF (1e9)
#define PI (acos(-1))
//const ll mod = 1000000007;
int N, K;
int dp[5001][5001][2];
vector<i_i> INPUT;

int main() {
    //cout.precision(10);
    cin.tie(0);
    ios::sync_with_stdio(false);
    cin >> N >> K;
    INPUT.resize(N);
    for(int i = 0; i < N; i++) {
        cin >> INPUT[i].first >> INPUT[i].second;
    }
    sort(INPUT.begin(), INPUT.end(), greater<i_i>());
    for(int i = 0; i <= 5000; i++) {
        for(int j = 0; j <= 5000; j++) {
            dp[i][j][1] = -1e9;
        }
    }
    for(int i = 0; i < N; i++) {
        int P = INPUT[i].first;
        int V = INPUT[i].second;
        for(int j = 0; j <= K; j++) {
            chmax(dp[i+1][j][0], dp[i][j][0]);
            chmax(dp[i+1][j][1], dp[i][j][1]);
            chmax(dp[i+1][j][0], dp[i][j][1] + V);
            if(j + P <= K) {
                chmax(dp[i+1][j+P][1], dp[i][j][0] + V);
            }
        }
    }
    int ans = 0;
    for(int i = 0; i <= K; i++) {
        chmax(ans, dp[N][i][0]);
        chmax(ans, dp[N][i][1]);
    }
    cout << ans << endl;
    return 0;
}
0