結果

問題 No.2869 yuusaan's Knapsacks
ユーザー vjudge1vjudge1
提出日時 2024-09-12 12:35:43
言語 C++23
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 1,319 bytes
コンパイル時間 1,191 ms
コンパイル使用メモリ 96,224 KB
実行使用メモリ 12,032 KB
最終ジャッジ日時 2024-09-12 12:36:01
合計ジャッジ時間 17,397 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 3 ms
5,248 KB
testcase_01 AC 2 ms
5,376 KB
testcase_02 AC 2 ms
5,376 KB
testcase_03 AC 311 ms
6,400 KB
testcase_04 WA -
testcase_05 AC 2 ms
5,376 KB
testcase_06 WA -
testcase_07 AC 361 ms
6,400 KB
testcase_08 AC 88 ms
5,376 KB
testcase_09 AC 61 ms
5,376 KB
testcase_10 AC 464 ms
7,936 KB
testcase_11 AC 227 ms
5,376 KB
testcase_12 AC 792 ms
10,624 KB
testcase_13 AC 220 ms
5,376 KB
testcase_14 AC 457 ms
6,784 KB
testcase_15 AC 358 ms
6,912 KB
testcase_16 AC 436 ms
7,296 KB
testcase_17 AC 1,126 ms
12,032 KB
testcase_18 AC 791 ms
9,856 KB
testcase_19 AC 592 ms
8,448 KB
testcase_20 AC 67 ms
5,376 KB
testcase_21 AC 647 ms
8,960 KB
testcase_22 AC 766 ms
8,960 KB
testcase_23 AC 231 ms
5,760 KB
testcase_24 AC 930 ms
10,496 KB
testcase_25 AC 135 ms
5,376 KB
testcase_26 AC 966 ms
8,960 KB
testcase_27 AC 2 ms
5,376 KB
testcase_28 WA -
testcase_29 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <vector>
#include <algorithm>

using namespace std;

const int MAXN = (1 << 16);

int n, m, k, ans, a[20], val[MAXN], w[MAXN], dp[20][MAXN], p[20][MAXN];

void Out(int x, int u) {
  if (!x) return ;
  Out(x - 1, u ^ p[x][u]);
  vector<int> out;
  for (int i = 0; i < m; i++) {
    if ((p[x][u] >> i) & 1) {
      out.push_back(i + 1);
    }
  }
  cout << out.size() << ' ';
  for (auto u : out) cout << u << ' ';
  cout << '\n';
}

int main() {
  ios::sync_with_stdio(0), cin.tie(0);
  cin >> n >> m;
  for (int i = 1; i <= n; i++) {
    cin >> a[i];
  }
  for (int i = 0, x, y; i < m; i++) {
    cin >> x >> y;
    for (int j = 0; j < (1 << m); j++) {
      val[j] += x * ((j >> i) & 1);
      val[j] = min(int(1e9) + 1, val[j]);
      w[j] += y * ((j >> i) & 1);
    }
  }
  for (int i = 1; i <= n; i++) {
    for (int j = 0; j < (1 << m); j++) {
      for (int k = j; ; k = (k - 1) & j) {
        if (w[k] <= a[i] && dp[i][j] < dp[i - 1][j ^ k] + val[k]) {
          dp[i][j] = dp[i - 1][j ^ k] + val[k], p[i][j] = k;
        }
        if (!k) break;
      }
    }
  }
  for (int i = 0; i < (1 << m); i++){
    ans = max(ans, dp[n][i]);
  }
  cout << ans << '\n';
  for (int i = 0; i < (1 << m); i++) {
    if (ans == dp[n][i]) {
      Out(n, i);
      return 0;
    }
  }
  return 0;
}
0