結果

問題 No.2844 Birthday Party Decoration
ユーザー kentikenti
提出日時 2024-08-23 22:46:04
言語 C++23(gcc13)
(gcc 13.2.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 1,114 bytes
コンパイル時間 1,197 ms
コンパイル使用メモリ 109,528 KB
実行使用メモリ 6,948 KB
最終ジャッジ日時 2024-08-23 22:46:06
合計ジャッジ時間 1,763 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 <vector>
#include <algorithm>
using namespace std;
typedef long long ll;
typedef pair<ll, int> P;

const int MAX_N = 60;
int N;
ll X, lb, ans;
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];
    vector<P> shops;
    for (int i = 0; i < N; i++) {
        ll tmp = (1LL << c[i]);
        if (X & tmp)
            continue;
        ll q = X / tmp;
        shops.push_back(make_pair((q + 1) * tmp, -c[i]));
    }
    if (shops.empty()) {
        cout << 0 << endl;
        return;
    }
    sort(shops.begin(), shops.end(), greater<P>());
    shops.push_back(make_pair(X, 0));
    lb = X; ans = shops[0].first * 2;
    for (int i = 0; i + 1 < shops.size(); i++) {
        ll tmp = (1LL << c[i]);
        ll q = X / tmp;
        if (q == 0)
            break;
        ll pos = (q - 1) * tmp + (tmp - 1);
        lb = min(lb, pos);
        ans = min(ans, (shops[i + 1].first - lb) * 2);
    }
    cout << ans << endl;
}
0