結果

問題 No.2869 yuusaan's Knapsacks
ユーザー vjudge1vjudge1
提出日時 2024-09-12 11:36:11
言語 C++23
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 1,343 bytes
コンパイル時間 3,031 ms
コンパイル使用メモリ 246,872 KB
実行使用メモリ 20,608 KB
最終ジャッジ日時 2024-09-12 11:36:38
合計ジャッジ時間 21,585 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 2 ms
5,376 KB
testcase_02 WA -
testcase_03 AC 394 ms
9,216 KB
testcase_04 AC 392 ms
9,216 KB
testcase_05 AC 2 ms
5,376 KB
testcase_06 AC 1,335 ms
19,968 KB
testcase_07 AC 394 ms
9,216 KB
testcase_08 AC 83 ms
5,376 KB
testcase_09 AC 86 ms
5,376 KB
testcase_10 WA -
testcase_11 AC 244 ms
7,296 KB
testcase_12 WA -
testcase_13 AC 242 ms
6,784 KB
testcase_14 AC 499 ms
11,136 KB
testcase_15 AC 480 ms
9,856 KB
testcase_16 AC 580 ms
11,136 KB
testcase_17 AC 1,279 ms
20,608 KB
testcase_18 WA -
testcase_19 AC 745 ms
13,696 KB
testcase_20 AC 86 ms
5,376 KB
testcase_21 WA -
testcase_22 AC 833 ms
16,000 KB
testcase_23 AC 311 ms
7,680 KB
testcase_24 AC 1,044 ms
17,792 KB
testcase_25 AC 162 ms
6,272 KB
testcase_26 WA -
testcase_27 AC 2 ms
5,376 KB
testcase_28 AC 1,255 ms
19,840 KB
testcase_29 AC 1,246 ms
19,840 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<bits/stdc++.h>

using namespace std;

using LL = long long;

LL w2[(1 << 17)][20], ans;
int w[20], n, m, e[20], v[20], id;
vector<int>ev;
LL dp[20][(1 << 17)], pre[20][(1 << 17)];

void dfs(int x, int s, LL sw, LL sum){
  if(x == m){
    for(int j = 1; j <= n; ++j){
      if(e[j] >= sw){
        w2[s][j] = sum;
      }
    }
    return;
  }
  dfs(x + 1, s, sw, sum);
  dfs(x + 1, (s | (1 << x)), sw + w[x], sum + v[x]);
}

void Dfs(int x, int s){
  if(!x)return;
  Dfs(x - 1, (s ^ pre[x][s]));
  ev.clear();
  for(int j = 0; j < m; ++j){
    if(pre[x][s] & (1 << j)){
      ev.push_back(j + 1);
    }
  }
  cout << ev.size() << ' ';
  for(auto v : ev){
    cout << v << ' ';
  }
  cout << '\n';
}

int main(){
  cin >> n >> m;
  for(int i = 1; i <= n; ++i){
    cin >> e[i];
  }
  for(int j = 0; j < m; ++j){
    cin >> v[j] >> w[j];
  }
  dfs(0, 0, 0, 0);
  for(int i = 1; i <= n; ++i){
    for(int j = 0; j < (1 << m); j++){
      for(int s = (((1 << m) - 1) ^ j); s; s = ((s - 1) & (((1 << m) - 1) ^ j))){
        if(dp[i - 1][j] + w2[s][i] > dp[i][j | s]){
          dp[i][j | s] = dp[i - 1][j] + w2[s][i];
          pre[i][j | s] = s;
        }
      }
    }
  }
  for(int i = 0; i < (1 << m); i++){
    if(dp[n][i] > ans){
      ans = dp[n][i];
      id = i;
    }
  }
  cout << dp[n][id] << '\n';
  Dfs(n, id);
  return 0;
}
0