結果

問題 No.2844 Birthday Party Decoration
ユーザー ripityripity
提出日時 2024-08-23 22:08:44
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 28 ms / 2,000 ms
コード長 1,018 bytes
コンパイル時間 2,264 ms
コンパイル使用メモリ 213,180 KB
実行使用メモリ 6,944 KB
最終ジャッジ日時 2024-08-23 22:08:48
合計ジャッジ時間 3,104 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,812 KB
testcase_01 AC 27 ms
6,940 KB
testcase_02 AC 26 ms
6,944 KB
testcase_03 AC 27 ms
6,944 KB
testcase_04 AC 28 ms
6,940 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;

void solve() {
  int N;
  long long X;
  cin >> N >> X;
  unordered_map<long long, long long> dp, ep;
  dp[0] = 0;
  for(int i = 0; i < N; i++) {
    int c;
    cin >> c;
    long long x = X & ((1LL << c) - 1);
    long long y = X & (1LL << c);
    if(y != 0) continue;
    // cout << "#" << endl;
    for(const auto [l, r] : dp) {
      long long l2 = - 1 - x;
      long long r2 = (1LL << c) - x;
      // cout << l << " " << r << " * " << l2 << " " << r2 << endl;
      {
        if(!ep.count(l)) ep[l] = max(r, r2);
        ep[l] = min(ep[l], max(r, r2));
      }
      if(X >= (1LL << c)) {
        if(!ep.count(min(l, l2))) ep[min(l, l2)] = r;
        ep[min(l, l2)] = min(ep[min(l, l2)], r);
      }
    }
    swap(dp, ep);
    ep.clear();
  }
  long long ans = 3LL << 60;
  for(const auto &[l, r] : dp) {
    ans = min(ans, 2 * (r - l));
    // cout << l << " " << r << endl;
  }
  cout << ans << "\n";
}

int main() {
  int T;
  cin >> T;
  while(T--) solve();
}
0