結果

問題 No.527 ナップサック容量問題
ユーザー HIcoderHIcoder
提出日時 2023-07-23 11:47:20
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 77 ms / 2,000 ms
コード長 1,314 bytes
コンパイル時間 1,157 ms
コンパイル使用メモリ 115,480 KB
実行使用メモリ 83,200 KB
最終ジャッジ日時 2024-09-24 10:53:26
合計ジャッジ時間 3,597 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 5 ms
7,168 KB
testcase_01 AC 6 ms
7,936 KB
testcase_02 AC 5 ms
6,940 KB
testcase_03 AC 6 ms
7,936 KB
testcase_04 AC 4 ms
6,940 KB
testcase_05 AC 34 ms
36,096 KB
testcase_06 AC 67 ms
71,552 KB
testcase_07 AC 55 ms
58,112 KB
testcase_08 AC 29 ms
31,616 KB
testcase_09 AC 4 ms
6,940 KB
testcase_10 AC 69 ms
72,192 KB
testcase_11 AC 48 ms
51,840 KB
testcase_12 AC 35 ms
38,528 KB
testcase_13 AC 70 ms
73,728 KB
testcase_14 AC 27 ms
29,056 KB
testcase_15 AC 41 ms
44,032 KB
testcase_16 AC 6 ms
7,936 KB
testcase_17 AC 34 ms
36,864 KB
testcase_18 AC 39 ms
41,600 KB
testcase_19 AC 6 ms
8,704 KB
testcase_20 AC 27 ms
30,592 KB
testcase_21 AC 77 ms
83,200 KB
testcase_22 AC 52 ms
56,576 KB
testcase_23 AC 75 ms
80,768 KB
testcase_24 AC 17 ms
19,712 KB
testcase_25 AC 51 ms
54,912 KB
testcase_26 AC 45 ms
49,408 KB
testcase_27 AC 46 ms
50,304 KB
testcase_28 AC 40 ms
44,032 KB
testcase_29 AC 77 ms
82,560 KB
testcase_30 AC 10 ms
11,776 KB
testcase_31 AC 36 ms
37,760 KB
testcase_32 AC 44 ms
45,568 KB
testcase_33 AC 38 ms
39,296 KB
testcase_34 AC 46 ms
47,104 KB
testcase_35 AC 44 ms
47,104 KB
testcase_36 AC 5 ms
7,168 KB
testcase_37 AC 33 ms
36,096 KB
testcase_38 AC 41 ms
44,800 KB
testcase_39 AC 39 ms
41,600 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<iostream>
#include<set> 
#include<algorithm>
#include<vector>
#include<string>
#include<set>
#include<map>
#include<numeric>
#include<queue>
#include<cmath>
#include <unordered_set>
#include<cassert>
using namespace std;
typedef long long ll;
const ll INF=1LL<<60;
typedef pair<int,int> P;
typedef pair<int,P> PP;
const ll MOD=1e9+7;

int main(){
    int N;
    cin>>N;
    vector<P> vw(N);

    ll sumv=0;
    for(int i=0;i<N;i++){
        cin>>vw[i].first>>vw[i].second;
        sumv+=vw[i].first;
    }
    ll V;
    cin>>V;

    const int MAXW=1e5 + 10;
    /*
    dp[i][j]=i番目までの品を用いて 容量jで作れる価値のmax
    */
    //0にすることがポイント
    vector<vector<ll>> dp(N+1,vector<ll>(MAXW+1,0));
    
    for(int i=0;i<N;i++){
        auto [v,w]=vw[i];
        for(int j=0;j<=MAXW;j++){
            
            dp[i+1][j]=max(dp[i][j],dp[i+1][j]);

            if(j+w<=MAXW){
                dp[i+1][j+w]=max(dp[i+1][j+w],dp[i][j]+v);
            }
        }
    }   

    ll minw=INF;
    ll maxw=0;

    for(ll j=1;j<=MAXW;j++){
        if(dp[N][j]==V){
            minw=min(j,minw);
            maxw=max(j,maxw);
        }
    }

    cout<<minw<<endl;


    if(maxw==MAXW){
        cout<<"inf"<<endl;
    }else{
        cout<<maxw<<endl;
    }


    



}
0