結果

問題 No.527 ナップサック容量問題
ユーザー ldsybldsyb
提出日時 2017-06-09 23:15:00
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 29 ms / 2,000 ms
コード長 614 bytes
コンパイル時間 740 ms
コンパイル使用メモリ 65,700 KB
実行使用メモリ 42,944 KB
最終ジャッジ日時 2024-09-22 18:24:29
合計ジャッジ時間 2,193 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 4 ms
6,812 KB
testcase_01 AC 4 ms
6,940 KB
testcase_02 AC 4 ms
6,940 KB
testcase_03 AC 4 ms
6,940 KB
testcase_04 AC 3 ms
6,940 KB
testcase_05 AC 14 ms
19,548 KB
testcase_06 AC 26 ms
37,096 KB
testcase_07 AC 20 ms
30,548 KB
testcase_08 AC 11 ms
17,228 KB
testcase_09 AC 3 ms
6,940 KB
testcase_10 AC 25 ms
37,456 KB
testcase_11 AC 18 ms
27,292 KB
testcase_12 AC 14 ms
20,644 KB
testcase_13 AC 25 ms
38,216 KB
testcase_14 AC 11 ms
15,964 KB
testcase_15 AC 16 ms
23,416 KB
testcase_16 AC 4 ms
6,940 KB
testcase_17 AC 13 ms
19,908 KB
testcase_18 AC 14 ms
22,236 KB
testcase_19 AC 4 ms
6,940 KB
testcase_20 AC 12 ms
16,632 KB
testcase_21 AC 28 ms
42,944 KB
testcase_22 AC 19 ms
29,660 KB
testcase_23 AC 28 ms
41,888 KB
testcase_24 AC 8 ms
11,384 KB
testcase_25 AC 19 ms
28,772 KB
testcase_26 AC 18 ms
26,088 KB
testcase_27 AC 18 ms
26,504 KB
testcase_28 AC 15 ms
23,516 KB
testcase_29 AC 29 ms
42,532 KB
testcase_30 AC 5 ms
7,384 KB
testcase_31 AC 14 ms
20,240 KB
testcase_32 AC 16 ms
24,100 KB
testcase_33 AC 13 ms
21,088 KB
testcase_34 AC 16 ms
24,936 KB
testcase_35 AC 16 ms
24,936 KB
testcase_36 AC 3 ms
6,940 KB
testcase_37 AC 13 ms
19,612 KB
testcase_38 AC 15 ms
23,828 KB
testcase_39 AC 14 ms
22,220 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
using namespace std;

int main(){
	int n, V;
	cin >> n;
	int v[n], w[n];
	for(int i = 0; i < n; i++) cin >> v[i] >> w[i];
	cin >> V;
	int dp[n + 1][100001]{};
	for(int i = 0; i < n; i++) for(int j = 0; j < 100001; j++){
		dp[i + 1][j] = max(dp[i + 1][j], dp[i][j]);
		if(j + w[i] < 100001){
			dp[i + 1][j + w[i]] = max(dp[i + 1][j + w[i]], dp[i][j] + v[i]);
		}
	}
	int l = -1, r = -1;
	for(int i = 1; i < 100001; i++) if(dp[n][i] == V){
		((l == -1) ? l : r) = i;
	}
	if(r == -1) r = l;
	if(r == 100000){
		cout << l << endl << "inf" << endl;
		return 0;
	}
	cout << l << endl << r << endl;
}
0