結果

問題 No.527 ナップサック容量問題
ユーザー rodearodea
提出日時 2018-03-02 18:54:50
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 768 bytes
コンパイル時間 606 ms
コンパイル使用メモリ 67,828 KB
実行使用メモリ 42,496 KB
最終ジャッジ日時 2024-06-11 19:30:31
合計ジャッジ時間 2,600 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 3 ms
5,248 KB
testcase_01 AC 5 ms
5,376 KB
testcase_02 AC 3 ms
5,376 KB
testcase_03 WA -
testcase_04 AC 2 ms
5,376 KB
testcase_05 AC 19 ms
19,072 KB
testcase_06 AC 31 ms
36,736 KB
testcase_07 AC 35 ms
30,080 KB
testcase_08 AC 13 ms
16,640 KB
testcase_09 AC 3 ms
5,376 KB
testcase_10 AC 44 ms
37,248 KB
testcase_11 AC 23 ms
26,880 KB
testcase_12 AC 17 ms
20,224 KB
testcase_13 AC 30 ms
38,016 KB
testcase_14 AC 16 ms
15,616 KB
testcase_15 AC 25 ms
23,040 KB
testcase_16 AC 4 ms
5,376 KB
testcase_17 AC 22 ms
19,456 KB
testcase_18 AC 23 ms
21,888 KB
testcase_19 WA -
testcase_20 AC 18 ms
16,384 KB
testcase_21 AC 47 ms
42,496 KB
testcase_22 AC 34 ms
29,312 KB
testcase_23 AC 48 ms
41,344 KB
testcase_24 AC 11 ms
10,752 KB
testcase_25 WA -
testcase_26 WA -
testcase_27 AC 29 ms
26,112 KB
testcase_28 WA -
testcase_29 AC 47 ms
42,112 KB
testcase_30 AC 7 ms
7,040 KB
testcase_31 AC 20 ms
19,840 KB
testcase_32 AC 26 ms
23,808 KB
testcase_33 AC 22 ms
20,736 KB
testcase_34 AC 27 ms
24,704 KB
testcase_35 WA -
testcase_36 WA -
testcase_37 WA -
testcase_38 WA -
testcase_39 WA -
権限があれば一括ダウンロードができます

ソースコード

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)
			{
				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