結果

問題 No.527 ナップサック容量問題
ユーザー RyuRyu
提出日時 2018-01-11 21:50:38
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 57 ms / 2,000 ms
コード長 1,032 bytes
コンパイル時間 598 ms
コンパイル使用メモリ 76,408 KB
実行使用メモリ 42,368 KB
最終ジャッジ日時 2024-06-06 04:47:13
合計ジャッジ時間 2,645 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 3 ms
5,248 KB
testcase_01 AC 4 ms
5,376 KB
testcase_02 AC 3 ms
5,376 KB
testcase_03 AC 4 ms
5,376 KB
testcase_04 AC 2 ms
5,376 KB
testcase_05 AC 24 ms
19,200 KB
testcase_06 AC 50 ms
36,736 KB
testcase_07 AC 39 ms
30,080 KB
testcase_08 AC 22 ms
16,768 KB
testcase_09 AC 3 ms
5,376 KB
testcase_10 AC 49 ms
37,120 KB
testcase_11 AC 34 ms
26,880 KB
testcase_12 AC 24 ms
20,224 KB
testcase_13 AC 49 ms
37,760 KB
testcase_14 AC 19 ms
15,616 KB
testcase_15 AC 29 ms
23,040 KB
testcase_16 AC 5 ms
5,376 KB
testcase_17 AC 24 ms
19,456 KB
testcase_18 AC 27 ms
21,888 KB
testcase_19 AC 5 ms
5,504 KB
testcase_20 AC 18 ms
16,384 KB
testcase_21 AC 55 ms
42,368 KB
testcase_22 AC 38 ms
29,312 KB
testcase_23 AC 54 ms
41,344 KB
testcase_24 AC 12 ms
10,880 KB
testcase_25 AC 36 ms
28,672 KB
testcase_26 AC 32 ms
25,600 KB
testcase_27 AC 33 ms
26,112 KB
testcase_28 AC 30 ms
23,040 KB
testcase_29 AC 57 ms
42,112 KB
testcase_30 AC 7 ms
7,040 KB
testcase_31 AC 26 ms
19,968 KB
testcase_32 AC 31 ms
23,808 KB
testcase_33 AC 26 ms
20,736 KB
testcase_34 AC 32 ms
24,576 KB
testcase_35 AC 30 ms
24,576 KB
testcase_36 AC 4 ms
5,376 KB
testcase_37 AC 24 ms
19,072 KB
testcase_38 AC 30 ms
23,424 KB
testcase_39 AC 27 ms
21,888 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <algorithm>
#include <vector>
#include <map>
#include <string>
#include <numeric>
#include <cstring>
#define rep(i, n) for (int i = 0; i < (n); i++)

using ll = long long int;
using namespace std;
const int MAX = 100000;

int N, V;
int w[1010], v[1010], dp[110][100010];
vector<int> vec;

int main()
{
    cin >> N;
    rep(i, N)
            cin >>
        v[i] >> w[i];
    cin >> V;

    for (int i = 0; i < N; i++)
    {
        for (int j = 0; j <= MAX; j++)
        {
            if (j + w[i] <= MAX)
            {
                dp[i + 1][j] = max(dp[i + 1][j], dp[i][j]);
                dp[i + 1][j + w[i]] = max(dp[i + 1][j + w[i]], dp[i][j] + v[i]);
            }
        }
    }

    int mi = 1000000000;
    int ma = -1;
    for (int i = 1; i < 100001; i++)
    {
        if (dp[N][i] == V)
        {
            mi = min(mi, i);
            ma = max(ma, i);
        }
    }
    cout << mi << endl;
    if (ma == 100000)
        cout << "inf" << endl;
    else
        cout << ma << endl;
}
0