結果

問題 No.527 ナップサック容量問題
ユーザー square1001square1001
提出日時 2017-08-22 18:18:32
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 553 bytes
コンパイル時間 1,634 ms
コンパイル使用メモリ 169,996 KB
実行使用メモリ 50,432 KB
最終ジャッジ日時 2024-10-15 04:24:31
合計ジャッジ時間 3,599 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 3 ms
5,248 KB
testcase_01 WA -
testcase_02 AC 4 ms
5,248 KB
testcase_03 AC 4 ms
5,376 KB
testcase_04 WA -
testcase_05 AC 21 ms
22,656 KB
testcase_06 AC 41 ms
43,648 KB
testcase_07 AC 34 ms
35,328 KB
testcase_08 AC 19 ms
19,840 KB
testcase_09 AC 3 ms
5,248 KB
testcase_10 AC 41 ms
43,776 KB
testcase_11 AC 31 ms
32,000 KB
testcase_12 AC 22 ms
24,064 KB
testcase_13 AC 43 ms
44,928 KB
testcase_14 AC 16 ms
18,048 KB
testcase_15 AC 25 ms
26,752 KB
testcase_16 AC 4 ms
5,376 KB
testcase_17 AC 21 ms
22,528 KB
testcase_18 AC 24 ms
25,344 KB
testcase_19 AC 4 ms
5,760 KB
testcase_20 AC 17 ms
18,816 KB
testcase_21 AC 47 ms
50,432 KB
testcase_22 AC 32 ms
34,432 KB
testcase_23 AC 46 ms
48,896 KB
testcase_24 AC 10 ms
12,416 KB
testcase_25 WA -
testcase_26 AC 29 ms
30,208 KB
testcase_27 AC 29 ms
30,592 KB
testcase_28 WA -
testcase_29 AC 48 ms
49,920 KB
testcase_30 AC 7 ms
8,064 KB
testcase_31 AC 21 ms
23,168 KB
testcase_32 AC 27 ms
27,776 KB
testcase_33 AC 23 ms
23,936 KB
testcase_34 AC 27 ms
28,800 KB
testcase_35 AC 27 ms
28,672 KB
testcase_36 WA -
testcase_37 AC 21 ms
22,272 KB
testcase_38 AC 26 ms
27,264 KB
testcase_39 AC 24 ms
25,472 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
int N, V, v[109], w[109], dp[109][120009];
int main() {
	cin >> N;
	for(int i = 0; i < N; i++) cin >> v[i] >> w[i];
	cin >> V;
	for(int i = 0; i < N; i++) {
		for(int j = 0; j <= 120000; j++) {
			dp[i + 1][j] = dp[i][j];
			if(j >= w[i]) dp[i + 1][j] = max(dp[i + 1][j], dp[i][j - w[i]] + v[i]);
		}
	}
	vector<int> ret;
	for(int i = 0; i <= 120000; i++) {
		if(dp[N][i] == V) ret.push_back(i);
	}
	cout << ret.front() << endl << (ret.back() == 120000 ? "inf" : to_string(ret.back())) << endl;
	return 0;
}
0