結果

問題 No.2869 yuusaan's Knapsacks
ユーザー vjudge1vjudge1
提出日時 2024-09-12 11:51:45
言語 C++23
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 1,295 bytes
コンパイル時間 1,165 ms
コンパイル使用メモリ 100,852 KB
実行使用メモリ 6,948 KB
最終ジャッジ日時 2024-09-12 11:51:49
合計ジャッジ時間 3,533 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 2 ms
5,376 KB
testcase_02 AC 1 ms
5,376 KB
testcase_03 AC 13 ms
5,376 KB
testcase_04 AC 14 ms
5,376 KB
testcase_05 AC 2 ms
5,376 KB
testcase_06 AC 2 ms
5,376 KB
testcase_07 AC 2 ms
5,376 KB
testcase_08 AC 9 ms
5,376 KB
testcase_09 AC 8 ms
5,376 KB
testcase_10 AC 3 ms
5,376 KB
testcase_11 WA -
testcase_12 WA -
testcase_13 AC 4 ms
5,376 KB
testcase_14 AC 3 ms
5,376 KB
testcase_15 WA -
testcase_16 WA -
testcase_17 AC 3 ms
5,376 KB
testcase_18 WA -
testcase_19 WA -
testcase_20 AC 8 ms
5,376 KB
testcase_21 AC 2 ms
5,376 KB
testcase_22 AC 2 ms
5,376 KB
testcase_23 WA -
testcase_24 AC 2 ms
5,376 KB
testcase_25 AC 10 ms
5,376 KB
testcase_26 AC 3 ms
5,376 KB
testcase_27 AC 2 ms
5,376 KB
testcase_28 AC 3 ms
5,376 KB
testcase_29 AC 3 ms
5,376 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

using namespace std;

struct Node {
  int val, w, id;
  bool operator <(const Node &i) const {
    return w > i.w;
  }
} b[20], a[20];

bool vis[20];
vector<int> out[20];
int n, m, k, ans, p[20];

void Check(int s) {
  int c = 0;
  vector<int> t[20];
  for (int i = 1; i <= k; i++) {
    vis[i] = 0;
  }
  for (int i = 0; i < n; i++) {
    int weight = a[i].w;
    for (int j = 1; j <= k; j++) {
      if (!vis[j] && b[p[j]].w <= weight) {
        c++, vis[j] = 1, weight -= b[p[j]].w;
        t[a[i].id].push_back(b[p[j]].id);
      }
    }
  }
  if (c < k) return ;
  ans = s;
  for (int i = 0; i < n; i++) {
    out[i] = t[i];
  }
}

void dfs(int x, int s) {
  if (x == m + 1) {
    if (s > ans) Check(s);
    return ;
  }
  dfs(x + 1, s), p[++k] = x;
  dfs(x + 1, s + b[x].val), k--;
}

int main() {
  ios::sync_with_stdio(0), cin.tie(0);
  cin >> n >> m;
  for (int i = 0; i < n; i++) {
    cin >> a[i].w, a[i].id = i;
  }
  for (int i = 1; i <= m; b[i].id = i, i++) {
    cin >> b[i].val >> b[i].w;
  }
  sort(a, a + n);
  sort(b + 1, b + m + 1);
  dfs(1, 0);
  cout << ans << '\n';
  for (int i = 0; i < n; i++) {
    cout << out[i].size() << ' ';
    for (auto u : out[i]) cout << u << ' ';
    cout << '\n';
  }
  return 0;
}
0