結果

問題 No.527 ナップサック容量問題
ユーザー RubikunRubikun
提出日時 2019-08-05 14:38:22
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 1,805 bytes
コンパイル時間 1,568 ms
コンパイル使用メモリ 170,992 KB
実行使用メモリ 42,960 KB
最終ジャッジ日時 2024-07-18 13:32:56
合計ジャッジ時間 3,264 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 3 ms
6,812 KB
testcase_01 WA -
testcase_02 AC 3 ms
6,940 KB
testcase_03 AC 4 ms
6,940 KB
testcase_04 WA -
testcase_05 AC 18 ms
19,540 KB
testcase_06 AC 37 ms
37,072 KB
testcase_07 AC 36 ms
30,432 KB
testcase_08 AC 12 ms
16,992 KB
testcase_09 AC 2 ms
6,940 KB
testcase_10 AC 45 ms
37,336 KB
testcase_11 AC 25 ms
27,356 KB
testcase_12 AC 15 ms
20,696 KB
testcase_13 AC 37 ms
38,104 KB
testcase_14 AC 13 ms
15,956 KB
testcase_15 AC 24 ms
23,248 KB
testcase_16 AC 4 ms
6,944 KB
testcase_17 AC 18 ms
19,928 KB
testcase_18 AC 22 ms
22,108 KB
testcase_19 AC 4 ms
6,940 KB
testcase_20 AC 16 ms
16,596 KB
testcase_21 AC 54 ms
42,960 KB
testcase_22 AC 33 ms
29,660 KB
testcase_23 AC 49 ms
41,692 KB
testcase_24 AC 9 ms
11,228 KB
testcase_25 WA -
testcase_26 AC 31 ms
26,076 KB
testcase_27 AC 28 ms
26,464 KB
testcase_28 WA -
testcase_29 AC 59 ms
42,580 KB
testcase_30 AC 6 ms
7,296 KB
testcase_31 AC 21 ms
20,324 KB
testcase_32 AC 26 ms
24,160 KB
testcase_33 AC 19 ms
20,944 KB
testcase_34 AC 25 ms
24,912 KB
testcase_35 AC 25 ms
24,788 KB
testcase_36 WA -
testcase_37 AC 18 ms
19,536 KB
testcase_38 AC 25 ms
23,768 KB
testcase_39 AC 23 ms
22,224 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;
            }
        }
        
        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;
            }
        }
        
        cout<<left<<endl<<right<<endl;
    }
}
0