結果

問題 No.2844 Birthday Party Decoration
ユーザー n0ma_run0ma_ru
提出日時 2024-08-23 21:23:27
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 10 ms / 2,000 ms
コード長 1,178 bytes
コンパイル時間 2,335 ms
コンパイル使用メモリ 201,140 KB
実行使用メモリ 6,944 KB
最終ジャッジ日時 2024-08-23 21:23:30
合計ジャッジ時間 2,517 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

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

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
using ll = long long;
#define ALL(v) v.begin(),v.end()
#define dbg(x) cerr << #x << ": " << (x) << endl;
template<class F, class S>
ostream& operator<<(ostream& os, pair<F,S>& p) {
    os << '(' << p.first << ',' << p.second << ')';
    return os;
}
template<class Iter>
void print(Iter beg, Iter end) {
    for (Iter itr = beg; itr != end; ++itr) {
        cerr << *itr << ' ';
    }
    cerr << '\n';
}
inline bool naraba(bool a, bool b) { return (!a || b); }

ll solve() {
    int N;
    ll X;
    cin >> N >> X;
    vector<int> C(N);
    for (int i = 0; i < N; ++i) cin >> C[i];

    ll ans = 0;
    for (int i = 0; i < N; ++i) {
        if (X >> C[i] & 1) continue;

        ll W = 1LL << C[i]+1;
        ll L = X / W * W - 1;
        ll R = L + 1 + (1LL << C[i]);
        // dbg(W)
        // dbg(L)
        // dbg(R)
        if (L < 0) {
            // dbg(R-X)
            ans = max(ans, R-X);
        } else {
            // dbg(min(X-L, R-X))
            ans = max(ans, min(X-L, R-X));
        }
    }
    return ans << 1;
}

int main() {
    int T;
    cin >> T;
    while (T--) {
        cout << solve() << '\n';
    }
}
0