結果

問題 No.2844 Birthday Party Decoration
ユーザー RiRinbaruRiRinbaru
提出日時 2024-08-23 21:57:52
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 6 ms / 2,000 ms
コード長 2,078 bytes
コンパイル時間 3,624 ms
コンパイル使用メモリ 231,240 KB
実行使用メモリ 6,944 KB
最終ジャッジ日時 2024-08-23 21:57:56
合計ジャッジ時間 4,061 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

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

ソースコード

diff #

#include <bits/stdc++.h>
#define rep(i, p, n) for (ll i = p; i < (ll)(n); i++)
#define rep2(i, p, n) for (ll i = p; i >= (ll)(n); i--)
using namespace std;
using ll = long long;
using ld = long double;
const double pi = 3.141592653589793;
const long long inf = 2 * 1e9;
const long long linf = 4 * 1e18;
const ll mod1 = 1000000007;
const ll mod2 = 998244353;
template <class T>
inline bool chmax(T &a, T b)
{    if (a < b)    {        a = b;        return 1;    }    return 0;}
template <class T>
inline bool chmin(T &a, T b)
{
    if (a > b)
    {
        a = b;
        return 1;
    }
    return 0;
}

//atcoder
#include <atcoder/all>
using namespace atcoder;
using mint1 = modint1000000007;
using mint2 = modint998244353;

vector<pair<ll, ll>> base={{-1, 0}, {1, 0}, {0, -1}, {0, 1}};

int main() {

    //////////////////
    ios::sync_with_stdio(false);
    cin.tie(nullptr);
    //////////////////

    ll T;
    cin >> T;
    vector<ll> li(62);
    li.at(0) = 1;
    rep(i, 0, 61) {
        li.at(i + 1) = li.at(i) * 2;
    }
    while (T--)
    {
        ll N, X;
        cin >> N >> X;
        vector<ll> C(N);
        rep(i, 0, N) {
            cin >> C.at(i);
        }
        ll ans = 0;
        rep2(i, N - 1, 0)
        {
            if (li.at(C.at(i))&X) {
                continue;
            }
            //cout << C.at(i) << " " << i << endl;
            ans=linf;
            if (C.at(i)==0) {
                ans = 1;
                break;
            }
            ll temp=1;
	        if ((li.at(C.at(i)-1)&X)==0) {
        		rep(j, 0, C.at(i)) {
                	if (X&li.at(j)) {
                    	temp += li.at(j);
                	}
                }
                //cout << temp;
                if (X>=temp) {
                	chmin(ans, temp);	
                }
                temp=1;
            }
            rep(j, 0, C.at(i)) {
                if ((X&li.at(j))==0) {
                    temp += li.at(j);
                }
            }
            chmin(ans, temp);	
            break;
        }
        cout << ans*2 << endl;
    }
}
0