結果

問題 No.527 ナップサック容量問題
ユーザー rodearodea
提出日時 2018-03-02 19:07:51
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 47 ms / 2,000 ms
コード長 778 bytes
コンパイル時間 525 ms
コンパイル使用メモリ 68,496 KB
実行使用メモリ 42,644 KB
最終ジャッジ日時 2024-06-11 19:52:17
合計ジャッジ時間 2,345 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 3 ms
6,812 KB
testcase_01 AC 4 ms
6,944 KB
testcase_02 AC 3 ms
6,944 KB
testcase_03 AC 4 ms
6,940 KB
testcase_04 AC 2 ms
6,940 KB
testcase_05 AC 15 ms
20,196 KB
testcase_06 AC 30 ms
37,468 KB
testcase_07 AC 33 ms
30,572 KB
testcase_08 AC 13 ms
17,036 KB
testcase_09 AC 3 ms
6,944 KB
testcase_10 AC 43 ms
37,608 KB
testcase_11 AC 21 ms
27,260 KB
testcase_12 AC 15 ms
21,220 KB
testcase_13 AC 30 ms
38,676 KB
testcase_14 AC 15 ms
16,232 KB
testcase_15 AC 24 ms
23,108 KB
testcase_16 AC 5 ms
6,940 KB
testcase_17 AC 20 ms
20,432 KB
testcase_18 AC 22 ms
22,416 KB
testcase_19 AC 5 ms
6,940 KB
testcase_20 AC 16 ms
17,000 KB
testcase_21 AC 47 ms
42,644 KB
testcase_22 AC 32 ms
30,648 KB
testcase_23 AC 44 ms
41,648 KB
testcase_24 AC 10 ms
11,088 KB
testcase_25 AC 30 ms
30,160 KB
testcase_26 AC 27 ms
26,600 KB
testcase_27 AC 28 ms
26,252 KB
testcase_28 AC 24 ms
24,252 KB
testcase_29 AC 47 ms
42,572 KB
testcase_30 AC 6 ms
8,208 KB
testcase_31 AC 21 ms
20,348 KB
testcase_32 AC 26 ms
24,384 KB
testcase_33 AC 23 ms
21,840 KB
testcase_34 AC 26 ms
25,652 KB
testcase_35 AC 25 ms
24,724 KB
testcase_36 AC 4 ms
6,944 KB
testcase_37 AC 21 ms
20,048 KB
testcase_38 AC 24 ms
24,008 KB
testcase_39 AC 22 ms
22,660 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<iostream>
#include<algorithm>
#include<utility>
using namespace std;

int v[110], w[110];
int dp[110][100010]; 

pair<int, int> solve(int n, int V, pair<int, int>P)
{
	P = make_pair(1000000, 0);
	for (int i = 1; i <= n; i++)
	{
		for (int j = 1; j <= 100001; j++)
		{
			if (j < w[i]) dp[i][j] = dp[i - 1][j];
			else dp[i][j] = max(dp[i - 1][j], dp[i - 1][j - w[i]] + v[i]);

			if (dp[i][j] == V && i == n)
			{
				P.first = min(P.first, j);
				P.second = max(P.second, j);
			}
		}
	}
	return P;
}

int main()
{
	int n, V;
	pair<int, int> P;

	cin >> n;

	for (int i = 1; i <= n; i++) cin >> v[i] >> w[i];

	cin >> V;

	cout << solve(n, V, P).first << endl;
	if(solve(n, V, P).second != 100001) cout << solve(n, V, P).second << endl;
	else cout << "inf" << endl;
}
0