結果

問題 No.1858 Gorgeous Knapsack
ユーザー KKT89KKT89
提出日時 2022-05-31 20:19:21
言語 C++17(gcc12)
(gcc 12.3.0 + boost 1.87.0)
結果
AC  
実行時間 151 ms / 2,000 ms
コード長 1,657 bytes
コンパイル時間 1,867 ms
コンパイル使用メモリ 139,904 KB
実行使用メモリ 198,992 KB
最終ジャッジ日時 2024-09-21 01:25:24
合計ジャッジ時間 4,685 ms
ジャッジサーバーID
(参考情報)
judge5 / 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 3 ms
5,376 KB
testcase_04 AC 30 ms
45,952 KB
testcase_05 AC 10 ms
13,184 KB
testcase_06 AC 38 ms
57,088 KB
testcase_07 AC 36 ms
40,448 KB
testcase_08 AC 53 ms
80,256 KB
testcase_09 AC 94 ms
137,216 KB
testcase_10 AC 55 ms
52,096 KB
testcase_11 AC 64 ms
74,880 KB
testcase_12 AC 80 ms
111,744 KB
testcase_13 AC 27 ms
27,904 KB
testcase_14 AC 2 ms
5,376 KB
testcase_15 AC 2 ms
5,376 KB
testcase_16 AC 2 ms
5,376 KB
testcase_17 AC 2 ms
5,376 KB
testcase_18 AC 3 ms
5,376 KB
testcase_19 AC 2 ms
5,376 KB
testcase_20 AC 3 ms
5,376 KB
testcase_21 AC 2 ms
5,376 KB
testcase_22 AC 2 ms
5,376 KB
testcase_23 AC 3 ms
5,376 KB
testcase_24 AC 17 ms
20,224 KB
testcase_25 AC 105 ms
104,192 KB
testcase_26 AC 62 ms
77,056 KB
testcase_27 AC 62 ms
75,136 KB
testcase_28 AC 72 ms
62,336 KB
testcase_29 AC 11 ms
13,312 KB
testcase_30 AC 15 ms
17,664 KB
testcase_31 AC 14 ms
15,360 KB
testcase_32 AC 11 ms
13,312 KB
testcase_33 AC 23 ms
21,760 KB
testcase_34 AC 151 ms
198,992 KB
testcase_35 AC 119 ms
198,820 KB
testcase_36 AC 143 ms
198,912 KB
testcase_37 AC 2 ms
5,376 KB
testcase_38 AC 19 ms
23,680 KB
testcase_39 AC 2 ms
5,376 KB
testcase_40 AC 130 ms
198,912 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#pragma GCC optimize("Ofast")
#include <iostream>
#include <vector>
#include <algorithm>
#include <map>
#include <queue>
#include <cstdio>
#include <ctime>
#include <assert.h>
#include <chrono>
#include <random>
#include <numeric>
#include <set>
#include <deque>
#include <stack>
#include <sstream>
#include <utility>
#include <cstring>
#include <unordered_map>
#include <unordered_set>
#include <tuple>
#include <array>
#include <bitset>
using namespace std;
typedef long long int ll;
typedef unsigned long long ull;

mt19937_64 rng(chrono::steady_clock::now().time_since_epoch().count());
ll myRand(ll B) {
    return (ull)rng() % B;
}
inline double time() {
    return static_cast<long double>(chrono::duration_cast<chrono::nanoseconds>(chrono::steady_clock::now().time_since_epoch()).count()) * 1e-9;
}

ll dp[5001][5001];

int main(){
    cin.tie(nullptr);
    ios::sync_with_stdio(false);
    ll res = 0;
    int n,m; cin >> n >> m;
    vector<pair<int,int>> v(n);
    for(int i=0;i<n;i++){
        cin >> v[i].first >> v[i].second;
    }
    sort(v.rbegin(), v.rend());
    for(int i=0;i<=n;i++){
        for(int j=0;j<=m;j++){
            dp[i][j] = -1;
        }
    }    
    dp[0][0] = 0;
    for(int i=0;i<n;i++){
        for(int j=0;j<=m;j++){
            if(dp[i][j] == -1)continue;
            // 使わない
            dp[i+1][j] = max(dp[i+1][j], dp[i][j]);
            // 使う
            if(j+v[i].second <= m){
                res = max(res, (ll)v[i].first*(ll)(dp[i][j]+v[i].first));
                dp[i+1][j+v[i].second] = max(dp[i+1][j+v[i].second], dp[i][j]+v[i].first);
            }
        }
    }
    cout << res << endl;
}
0