結果

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

テストケース

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

ソースコード

diff #

/* -*- coding: utf-8 -*-
 *
 * 2844.cc:  No.2844 Birthday Party Decoration - yukicoder
 */

#include<cstdio>
#include<algorithm>
#include<utility>

using namespace std;

/* constant */

const int MAX_N = 60;
const int BN = 60;
const long long LINF = 1LL << (BN + 1);

/* typedef */

using ll = long long;
using pll = pair<ll,ll>;

/* global variables */

int cs[MAX_N];
pll ps[MAX_N + 1];

/* subroutines */

/* main */

int main() {
  int tn;
  scanf("%d", &tn);

  while (tn--) {
    int n;
    ll x;
    scanf("%d%lld", &n, &x);
    for (int i = 0; i < n; i++) scanf("%d", cs + i);

    ll r = x;
    int m = 0;
    for (int i = 0; i < n; i++) {
      ll bi = (1LL << cs[i]);
      if ((x & bi) == 0) {
	ll li = (x & ~(bi - 1)) - 1;
	ll ri = (x & ~(bi - 1)) | bi;
	if (li < 0) r = max(r, ri);
	else ps[m++] = {li, ri};
      }
    }

    ll mind = LINF;
    if (m > 0) {
      sort(ps, ps + m);
      ps[m] = {x, x};
      ll l = ps[0].first;
      mind = r - l;

      for (int i = 0; i < m; i++) {
	r = max(r, ps[i].second);
	l = ps[i + 1].first;
	mind = min(mind, r - l);
      }
    }
    else
      mind = r - x;

    printf("%lld\n", mind * 2);
  }

  return 0;
}
0