結果

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

テストケース

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

ソースコード

diff #

// 

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

using ll = long long;

#define rep(i, n) for (int i=0; i<(int)(n); ++(i))
#define rep3(i, m, n) for (int i=(m); (i)<(int)(n); ++(i))
#define repr(i, n) for (int i=(int)(n)-1; (i)>=0; --(i))
#define rep3r(i, m, n) for (int i=(int)(n)-1; (i)>=(int)(m); --(i))
#define all(x) (x).begin(), (x).end()

const ll LINF = (ll)(2e18);

int main() {
    int t0;
    cin >> t0;
    rep(i0, t0) {
        int n;
        ll x;
        cin >> n >> x;
        vector<int> c(n);
        rep(i, n) cin >> c[i];
        bool zero = true;
        rep(i, n) if (!(x>>c[i]&1)) zero = false;
        if (zero) {
            cout << 0 << endl;
            continue;
        }
        ll sx = x;
        x = x % (1LL<<(c[n-1]+1)) + (1LL << (c[n-1]+1));
        ll r = x, l = x;
        int mci = -1;
        repr(i, n) if (!(x>>c[i]&1)) {
            mci = c[i];
            break;
        }
        r = ((x >> mci) << mci) + (1LL<<mci);
        l = ((l >> mci) << mci) - 1;
        ll res = (r-x)*2;
        if ((x-l) <= sx) res = min(res, (x-l)*2);
        cout << res << endl;
    }
    return 0;
}
0