結果

問題 No.527 ナップサック容量問題
ユーザー nenuonnenuon
提出日時 2017-06-21 14:11:19
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 44 ms / 2,000 ms
コード長 1,101 bytes
コンパイル時間 718 ms
コンパイル使用メモリ 89,024 KB
実行使用メモリ 42,880 KB
最終ジャッジ日時 2024-10-02 10:46:49
合計ジャッジ時間 2,396 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 2 ms
5,248 KB
testcase_02 AC 2 ms
5,248 KB
testcase_03 AC 2 ms
5,248 KB
testcase_04 AC 2 ms
5,248 KB
testcase_05 AC 9 ms
9,984 KB
testcase_06 AC 33 ms
32,128 KB
testcase_07 AC 22 ms
22,016 KB
testcase_08 AC 7 ms
8,192 KB
testcase_09 AC 2 ms
5,248 KB
testcase_10 AC 35 ms
32,640 KB
testcase_11 AC 17 ms
18,048 KB
testcase_12 AC 9 ms
10,880 KB
testcase_13 AC 36 ms
34,176 KB
testcase_14 AC 7 ms
7,296 KB
testcase_15 AC 13 ms
13,440 KB
testcase_16 AC 2 ms
5,248 KB
testcase_17 AC 9 ms
10,368 KB
testcase_18 AC 12 ms
12,416 KB
testcase_19 AC 2 ms
5,248 KB
testcase_20 AC 6 ms
7,936 KB
testcase_21 AC 42 ms
42,880 KB
testcase_22 AC 21 ms
20,864 KB
testcase_23 AC 43 ms
40,832 KB
testcase_24 AC 4 ms
5,248 KB
testcase_25 AC 20 ms
19,840 KB
testcase_26 AC 16 ms
16,512 KB
testcase_27 AC 16 ms
17,024 KB
testcase_28 AC 13 ms
13,696 KB
testcase_29 AC 44 ms
42,240 KB
testcase_30 AC 2 ms
5,248 KB
testcase_31 AC 9 ms
10,496 KB
testcase_32 AC 14 ms
14,208 KB
testcase_33 AC 11 ms
11,392 KB
testcase_34 AC 14 ms
15,104 KB
testcase_35 AC 14 ms
15,232 KB
testcase_36 AC 2 ms
5,248 KB
testcase_37 AC 9 ms
9,856 KB
testcase_38 AC 13 ms
13,824 KB
testcase_39 AC 12 ms
12,416 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <algorithm>
#include <cstdio>
#include <iostream>
#include <map>
#include <cmath>
#include <queue>
#include <set>
#include <sstream>
#include <stack>
#include <string>
#include <vector>
#include <stdlib.h>
#include <stdio.h>
#include <bitset>
using namespace std;

int main(){
  int n;
  cin >> n;
  int v[n], w[n];
  for (int i = 0; i < n; i++){
    cin >> v[i] >> w[i];
  }
  int V;
  cin >> V;
  int dp[n+1][1000*n+1];
  for (int i = 0; i < n + 1; i++){
    for (int j = 0; j < 1000 * n + 1; j++){
      dp[i][j] = 0;
    }
  }
  for (int i = 0; i < n; i++){
    for (int j = 0; j < 1000 * n + 1; j++){
      dp[i+1][j] = max(dp[i+1][j], dp[i][j]);
      if(j + w[i] >= 1000 * n + 1) continue;
      dp[i+1][j+w[i]] = max(dp[i+1][j+w[i]], dp[i][j]+v[i]);
    }
  }
  int mx = 0, mn = 9999999;
  int sum = 0;
  for (int i = 0; i < n; i++){
    sum += v[i];
  }
  for (int i = 1; i < 1000 * n + 1; i++){
    if(dp[n][i] == V){
      mx = max(mx, i);
      mn = min(mn, i);
    }
  }
  printf("%d\n", mn);
  if(V == sum){
    puts("inf");
  } else {
    printf("%d\n", mx);
  }
  return 0;
}
0