結果

問題 No.527 ナップサック容量問題
ユーザー NasatameNasatame
提出日時 2017-06-09 23:02:26
言語 C++11
(gcc 11.4.0)
結果
AC  
実行時間 297 ms / 2,000 ms
コード長 1,141 bytes
コンパイル時間 485 ms
コンパイル使用メモリ 57,468 KB
実行使用メモリ 397,916 KB
最終ジャッジ日時 2024-09-22 16:56:18
合計ジャッジ時間 6,197 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 12 ms
18,936 KB
testcase_01 AC 15 ms
22,848 KB
testcase_02 AC 11 ms
15,028 KB
testcase_03 AC 15 ms
23,044 KB
testcase_04 AC 8 ms
11,236 KB
testcase_05 AC 107 ms
163,540 KB
testcase_06 AC 293 ms
339,376 KB
testcase_07 AC 161 ms
272,976 KB
testcase_08 AC 83 ms
140,088 KB
testcase_09 AC 9 ms
11,256 KB
testcase_10 AC 228 ms
343,236 KB
testcase_11 AC 141 ms
241,708 KB
testcase_12 AC 102 ms
175,244 KB
testcase_13 AC 239 ms
351,056 KB
testcase_14 AC 75 ms
128,360 KB
testcase_15 AC 121 ms
202,584 KB
testcase_16 AC 14 ms
22,688 KB
testcase_17 AC 97 ms
167,532 KB
testcase_18 AC 112 ms
190,896 KB
testcase_19 AC 16 ms
26,876 KB
testcase_20 AC 79 ms
136,112 KB
testcase_21 AC 297 ms
397,916 KB
testcase_22 AC 157 ms
265,216 KB
testcase_23 AC 267 ms
386,244 KB
testcase_24 AC 49 ms
81,576 KB
testcase_25 AC 152 ms
257,364 KB
testcase_26 AC 135 ms
229,996 KB
testcase_27 AC 135 ms
233,928 KB
testcase_28 AC 117 ms
202,568 KB
testcase_29 AC 273 ms
394,160 KB
testcase_30 AC 25 ms
42,580 KB
testcase_31 AC 100 ms
171,248 KB
testcase_32 AC 120 ms
210,504 KB
testcase_33 AC 104 ms
179,220 KB
testcase_34 AC 124 ms
218,176 KB
testcase_35 AC 126 ms
218,148 KB
testcase_36 AC 12 ms
19,096 KB
testcase_37 AC 95 ms
163,648 KB
testcase_38 AC 121 ms
206,564 KB
testcase_39 AC 113 ms
190,852 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <algorithm>
#include <string>
using namespace std;
 
 
 /*
N≤100
1≤vi,wi≤10001≤vi,wi≤1000
0≤V≤100000
*/

// 番号 重さ = 価値
int dp[101][1000100] = {};
int main(void){
    
    int n;
    cin >> n;
    
    for(int i = 0; i < n; i++)
        for(int j = 0; j < 1000100; j++)
            dp[i][j] = -1;
    
    
    dp[0][0] = 0;
    
    for(int i = 0; i < n; i++){
        int v,w;
        cin >> v >> w;
        
        for(int j = 1000099; j >= 0; j --){
            if(dp[i][j] != -1 && j + w < 1000099){
                dp[i+1][j+w] = max(v + dp[i][j],dp[i+1][j+w]);
                dp[i+1][j] = max(dp[i][j],dp[i+1][j]);
                //cout << j+w << endl;
            }
        }
    }
    int V,Max = 0,Min = 1000100;
    cin >> V;
    
    for(int j = 0; j < 1000100; j++){
        
        dp[n][j+1] = max(dp[n][j+1],dp[n][j]); 
        
        if(dp[n][j] == V){
            Max = max(Max,j);
            Min = min(Min,j);
        }
    }
    
    cout << max(Min,1) << endl;
    if(Max > 1000000) 
    cout << "inf" << endl;
    else 
    cout << Max << endl; 
    
}
0