結果

問題 No.527 ナップサック容量問題
ユーザー RubikunRubikun
提出日時 2019-08-05 14:39:40
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 62 ms / 2,000 ms
コード長 1,861 bytes
コンパイル時間 1,459 ms
コンパイル使用メモリ 169,696 KB
実行使用メモリ 42,880 KB
最終ジャッジ日時 2024-07-18 13:33:00
合計ジャッジ時間 3,591 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 4 ms
5,248 KB
testcase_01 AC 4 ms
5,376 KB
testcase_02 AC 3 ms
5,376 KB
testcase_03 AC 5 ms
5,504 KB
testcase_04 AC 3 ms
5,376 KB
testcase_05 AC 22 ms
19,456 KB
testcase_06 AC 46 ms
37,120 KB
testcase_07 AC 44 ms
30,336 KB
testcase_08 AC 18 ms
17,152 KB
testcase_09 AC 2 ms
5,376 KB
testcase_10 AC 54 ms
37,504 KB
testcase_11 AC 33 ms
27,228 KB
testcase_12 AC 23 ms
20,608 KB
testcase_13 AC 44 ms
38,356 KB
testcase_14 AC 19 ms
16,000 KB
testcase_15 AC 33 ms
23,508 KB
testcase_16 AC 5 ms
5,376 KB
testcase_17 AC 27 ms
19,920 KB
testcase_18 AC 29 ms
22,364 KB
testcase_19 AC 5 ms
5,760 KB
testcase_20 AC 22 ms
16,640 KB
testcase_21 AC 61 ms
42,880 KB
testcase_22 AC 41 ms
29,656 KB
testcase_23 AC 60 ms
41,728 KB
testcase_24 AC 11 ms
11,228 KB
testcase_25 AC 39 ms
28,800 KB
testcase_26 AC 37 ms
26,208 KB
testcase_27 AC 39 ms
26,496 KB
testcase_28 AC 35 ms
23,388 KB
testcase_29 AC 62 ms
42,496 KB
testcase_30 AC 6 ms
7,424 KB
testcase_31 AC 28 ms
20,224 KB
testcase_32 AC 34 ms
24,192 KB
testcase_33 AC 29 ms
20,864 KB
testcase_34 AC 37 ms
24,788 KB
testcase_35 AC 35 ms
24,924 KB
testcase_36 AC 4 ms
5,376 KB
testcase_37 AC 26 ms
19,428 KB
testcase_38 AC 35 ms
23,680 KB
testcase_39 AC 31 ms
22,244 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
typedef long long ll;
#define all(x) (x).begin(),(x).end()
const int mod=1000000007,MAX=100003,INF=1<<30;

int main(){

    int N;cin>>N;
    vector<int> V(N),W(N);
    int sum=0;
    for(int i=0;i<N;i++){
        cin>>V[i]>>W[i];
        sum+=V[i];
    }
    int maxi;cin>>maxi;
    
    if(sum==maxi){
        int dp[N+1][MAX];//i個みたときの合計容量jのときの価値max
        for(int i=0;i<MAX;i++){
            for(int j=0;j<N+1;j++){
                dp[j][i]=0;
            }
        }
        
        for(int i=1;i<=N;i++){
            for(int j=0;j<MAX;j++){
                dp[i][j]=max(dp[i][j],dp[i-1][j]);
                if(j-W[i-1]<0) continue;
                dp[i][j]=max(dp[i][j],dp[i-1][j-W[i-1]]+V[i-1]);
            }
        }
        
        int left=-1,right=-1;
        for(int i=0;i<MAX;i++){
            if(left==-1&&dp[N][i]==maxi){
                left=i;
                break;
            }
        }
        if(left==0) left++;
        
        cout<<left<<endl<<"inf"<<endl;
    }else{
        int dp[N+1][MAX];//i個みたときの合計容量jのときの価値max
        for(int i=0;i<MAX;i++){
            for(int j=0;j<N+1;j++){
                dp[j][i]=0;
            }
        }
        
        for(int i=1;i<=N;i++){
            for(int j=0;j<MAX;j++){
                dp[i][j]=max(dp[i][j],dp[i-1][j]);
                if(j-W[i-1]<0) continue;
                dp[i][j]=max(dp[i][j],dp[i-1][j-W[i-1]]+V[i-1]);
            }
        }
        
        int left=-1,right=-1;
        for(int i=0;i<MAX;i++){
            if(left==-1&&dp[N][i]==maxi) left=i;
            else if(left!=-1&&dp[N][i]>maxi){
                right=i-1;
                break;
            }
        }
        if(left==0) left++;
        
        cout<<left<<endl<<right<<endl;
    }
}
0