結果

問題 No.2866 yuusaan's Knapsack
ユーザー yuusaanyuusaan
提出日時 2024-07-18 21:51:19
言語 C++23
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
(最新)
AC  
(最初)
実行時間 -
コード長 1,441 bytes
コンパイル時間 3,256 ms
コンパイル使用メモリ 257,056 KB
実行使用メモリ 19,584 KB
最終ジャッジ日時 2024-08-18 19:23:41
合計ジャッジ時間 3,616 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 3 ms
6,812 KB
testcase_01 AC 3 ms
6,944 KB
testcase_02 AC 3 ms
6,940 KB
testcase_03 AC 2 ms
6,940 KB
testcase_04 AC 2 ms
6,944 KB
testcase_05 AC 2 ms
6,940 KB
testcase_06 AC 19 ms
18,688 KB
testcase_07 AC 15 ms
15,744 KB
testcase_08 AC 17 ms
17,920 KB
testcase_09 AC 15 ms
16,768 KB
testcase_10 AC 17 ms
17,664 KB
testcase_11 AC 12 ms
13,440 KB
testcase_12 AC 15 ms
16,000 KB
testcase_13 AC 15 ms
14,464 KB
testcase_14 AC 15 ms
16,128 KB
testcase_15 AC 17 ms
17,920 KB
testcase_16 AC 13 ms
14,592 KB
testcase_17 AC 17 ms
17,024 KB
testcase_18 AC 11 ms
12,800 KB
testcase_19 AC 18 ms
19,200 KB
testcase_20 AC 14 ms
15,360 KB
testcase_21 AC 15 ms
16,128 KB
testcase_22 AC 14 ms
15,488 KB
testcase_23 AC 18 ms
18,688 KB
testcase_24 AC 14 ms
15,104 KB
testcase_25 AC 17 ms
17,024 KB
testcase_26 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<bits/stdc++.h>

using namespace std;

pair<int,int> pairmax(pair<int,int> a,pair<int,int> b){
    if(b > a)swap(a,b);
    if(a.first > b.first){
        return a;
    }
    else{
        return {a.first,a.second + b.second};
    }
}

int main(){
    int inf = 2e9;
    int N,W;
    cin >> N >> W;
    vector<int> v(N+1),w(N+1);
    vector<pair<int,int>> a(N);

    //入力を受け付け、ソートする処理
    for(int i = 0;i < N;i++){
        cin >> a[i].second >> a[i].first;
    }
    sort(a.begin(),a.end());
    for(int i = 1;i <= N;i++){
        v[i] = a[i-1].second;
        w[i] = a[i-1].first;
    }

    int crit = 10000;//添え字が負の値を取らないようにするためのずらし

    //DPの処理
    vector<vector<pair<int,int>>> dp(N+1,vector<pair<int,int>> (20001,{-inf,1}));
    pair<int,int> ans = {0,0};
    dp[0][0+crit] = {0,1};
    for(int i = 1;i <= N;i++){
        for(int j = -10000;j <= 10000;j++)dp[i][j+crit] = dp[i-1][j+crit];
        for(int j = -10000;j <= 10000;j++){
            if(-10000 <= j - w[i] && j - w[i] <= 10000){
                if(dp[i-1][j-w[i]+crit].first != -inf)dp[i][j + crit] = pairmax(dp[i][j + crit],{dp[i-1][j-w[i] + crit].first + v[i],dp[i-1][j-w[i] + crit].second});
            }
        }
    }

    
    for(int j = -10000;j <= W;j++){
        ans = pairmax(ans,dp[N][j+crit]);
    }



    cout << ans.first << " " << ans.second << endl;
    return 0;
}
0