結果

問題 No.2844 Birthday Party Decoration
ユーザー kentikenti
提出日時 2024-08-23 21:49:22
言語 C++23(gcc13)
(gcc 13.2.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 819 bytes
コンパイル時間 945 ms
コンパイル使用メモリ 100,052 KB
実行使用メモリ 6,944 KB
最終ジャッジ日時 2024-08-23 21:49:24
合計ジャッジ時間 1,677 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

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

ソースコード

diff #

#include <iostream>
#include <cmath>
using namespace std;
typedef long long ll;

const int MAX_N = 60;
int N;
ll X, lb, ub;
int c[MAX_N];

int t;
void solve();

int main() {
    cin >> t;
    for (int tt = 0; tt < t; tt++)
        solve();
    return 0;
}

void solve() {
    cin >> N >> X;
    for (int i = 0; i < N; i++)
        cin >> c[i];
    lb = X, ub = X;
    for (int i = 0; i < N; i++) {
        ll tmp = (1LL << c[i]);
        if (X & tmp)
            continue;
        ll q = X / tmp;
        if (q % 2 == 0) {
            lb = min(lb, (q - 1) * tmp);
            ub = max(ub, (q + 1) * tmp);
        } else {
            if (X % tmp) {
                lb = min(lb, q * tmp);
                ub = max(ub, (q + 2) * tmp);
            }
        }
    }
    cout << min(abs(X - lb), abs(X - ub)) * 2 << endl;
}
0