結果

問題 No.2869 yuusaan's Knapsacks
ユーザー vjudge1vjudge1
提出日時 2024-09-12 12:34:34
言語 C++23
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 1,277 bytes
コンパイル時間 1,003 ms
コンパイル使用メモリ 96,228 KB
実行使用メモリ 13,156 KB
最終ジャッジ日時 2024-09-12 12:34:50
合計ジャッジ時間 16,225 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,812 KB
testcase_01 AC 2 ms
6,940 KB
testcase_02 AC 2 ms
6,944 KB
testcase_03 AC 259 ms
6,940 KB
testcase_04 WA -
testcase_05 AC 2 ms
6,940 KB
testcase_06 WA -
testcase_07 AC 313 ms
6,940 KB
testcase_08 AC 77 ms
6,940 KB
testcase_09 AC 48 ms
6,944 KB
testcase_10 AC 364 ms
8,968 KB
testcase_11 AC 205 ms
6,948 KB
testcase_12 AC 642 ms
11,732 KB
testcase_13 AC 181 ms
7,068 KB
testcase_14 AC 396 ms
8,156 KB
testcase_15 AC 283 ms
8,064 KB
testcase_16 AC 355 ms
8,880 KB
testcase_17 AC 980 ms
12,164 KB
testcase_18 AC 671 ms
10,584 KB
testcase_19 AC 490 ms
9,652 KB
testcase_20 AC 54 ms
6,940 KB
testcase_21 AC 544 ms
10,008 KB
testcase_22 AC 720 ms
10,308 KB
testcase_23 AC 183 ms
6,944 KB
testcase_24 AC 791 ms
10,652 KB
testcase_25 AC 119 ms
6,944 KB
testcase_26 AC 913 ms
8,948 KB
testcase_27 AC 2 ms
6,944 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);
      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