結果

問題 No.2844 Birthday Party Decoration
ユーザー AyunaAyuna
提出日時 2024-07-14 15:30:13
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 11 ms / 2,000 ms
コード長 994 bytes
コンパイル時間 833 ms
コンパイル使用メモリ 75,988 KB
実行使用メモリ 6,944 KB
最終ジャッジ日時 2024-07-14 15:30:15
合計ジャッジ時間 1,980 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

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

ソースコード

diff #

#include <iostream>
#include <vector>

using namespace std;

// 負の方向へ移動する距離を全探索し、正の方向へ移動する距離を最小化する

void solve(){
  int n;
  long long x;
  cin >> n >> x;
  vector<int> c(n);
  for (int &i: c) cin >> i;
  vector<int> move;
  for(int i: c){
    if (!(x & (1ll << i))) move.push_back(i);
  }
  if (move.size() == 0){
    cout << 0 << endl;
    return;
  }
  long long ans = 1ll << 61;
  for (int i = 0; i <= (int)move.size(); i++){
    long long minus;
    if (i == (int)move.size()) minus = x;
    else minus = ((x >> move[i]) << move[i]) - 1ll;
    if (minus < 0) continue;
    long long plus = x;
    for (int &j: move){
      long long p = ((x >> j) + 1ll) << j;
      long long m = ((x >> j) << j) - 1ll;
      if (minus <= m) continue;
      if (plus < p) plus = p;
    }
    if (ans > (plus - minus) * 2ll) ans = (plus - minus) * 2ll;
  }
  cout << ans << endl;
}

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