結果

問題 No.527 ナップサック容量問題
ユーザー sekiya9311sekiya9311
提出日時 2017-06-09 23:17:07
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 640 ms / 2,000 ms
コード長 1,348 bytes
コンパイル時間 1,629 ms
コンパイル使用メモリ 167,988 KB
実行使用メモリ 47,132 KB
最終ジャッジ日時 2024-09-22 18:34:52
合計ジャッジ時間 15,170 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 225 ms
46,864 KB
testcase_01 AC 235 ms
46,900 KB
testcase_02 AC 2 ms
6,940 KB
testcase_03 AC 226 ms
46,828 KB
testcase_04 AC 215 ms
46,984 KB
testcase_05 AC 2 ms
6,944 KB
testcase_06 AC 2 ms
6,940 KB
testcase_07 AC 499 ms
46,908 KB
testcase_08 AC 2 ms
6,940 KB
testcase_09 AC 2 ms
6,940 KB
testcase_10 AC 628 ms
46,928 KB
testcase_11 AC 2 ms
6,944 KB
testcase_12 AC 2 ms
6,944 KB
testcase_13 AC 2 ms
6,940 KB
testcase_14 AC 347 ms
46,976 KB
testcase_15 AC 408 ms
46,900 KB
testcase_16 AC 240 ms
46,812 KB
testcase_17 AC 370 ms
46,952 KB
testcase_18 AC 413 ms
47,024 KB
testcase_19 AC 241 ms
47,100 KB
testcase_20 AC 353 ms
46,972 KB
testcase_21 AC 637 ms
46,932 KB
testcase_22 AC 463 ms
46,812 KB
testcase_23 AC 613 ms
47,132 KB
testcase_24 AC 283 ms
46,936 KB
testcase_25 AC 456 ms
46,936 KB
testcase_26 AC 422 ms
46,956 KB
testcase_27 AC 457 ms
46,864 KB
testcase_28 AC 399 ms
46,916 KB
testcase_29 AC 640 ms
46,992 KB
testcase_30 AC 2 ms
6,940 KB
testcase_31 AC 367 ms
46,956 KB
testcase_32 AC 416 ms
46,912 KB
testcase_33 AC 384 ms
46,920 KB
testcase_34 AC 408 ms
46,856 KB
testcase_35 AC 434 ms
46,900 KB
testcase_36 AC 228 ms
46,792 KB
testcase_37 AC 357 ms
46,892 KB
testcase_38 AC 419 ms
46,784 KB
testcase_39 AC 407 ms
46,936 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>

using namespace std;

const int MAX = 111;
int N, V;
int v[MAX], w[MAX];

int dp[MAX][(int) 1e5 + 10];
// (i, j) = j:重さ


bool check(const int W, bool f) {
  memset(dp, -1, sizeof(dp));
  dp[0][0] = 0;
  for (int i = 0; i < N; i++) {
    for (int j = 0; j < 1e5 + 10; j++) {
      dp[i + 1][j] = dp[i][j];
    }
    for (int j = 0; j < 1e5 + 10; j++) {
      if (dp[i][j] != -1 && j + w[i] <= W) {
        dp[i + 1][j + w[i]] = max(dp[i][j + w[i]], dp[i][j] + v[i]);
      }
    }
  }
  int ma = 0;
  for (int i = 0; i < 1e5 + 10; i++) {
    if (dp[N][i] != -1) {
      ma = max(ma, dp[N][i]);
    }
  }
  if (f) return ma <= V;
  else return ma < V;
}

int main() {
  scanf("%d", &N);
  long long sum = 0, sumw = 0;;
  for (int i = 0; i < N; i++) {
    scanf("%d%d", v + i, w + i);
    sum += v[i];
    sumw += w[i];
  }
  scanf("%d", &V);
  if (sum <= V) {
    cout << sumw << endl;
    cout << "inf" << endl;
    return 0;
  }
  int high = 1e5, low = 1;
  while (high - low > 1) {
    int mid = (high + low) / 2;
    if (check(mid, false)) low = mid;
    else high = mid;
  }
  int mi = low + check(low, false);
  high = 1e5, low = 1;
  while (high - low > 1) {
    int mid = (high + low) / 2;
    if (check(mid, true)) low = mid;
    else high = mid;
  }
  cout << mi << endl;
  cout << low << endl;
  return 0;
}
0