結果
問題 | No.2844 Birthday Party Decoration |
ユーザー | Fu_L |
提出日時 | 2024-08-23 21:37:05 |
言語 | C++23(gcc13) (gcc 13.2.0 + boost 1.83.0) |
結果 |
AC
|
実行時間 | 5 ms / 2,000 ms |
コード長 | 1,252 bytes |
コンパイル時間 | 4,392 ms |
コンパイル使用メモリ | 276,180 KB |
実行使用メモリ | 6,944 KB |
最終ジャッジ日時 | 2024-08-23 21:37:11 |
合計ジャッジ時間 | 4,380 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
6,812 KB |
testcase_01 | AC | 5 ms
6,940 KB |
testcase_02 | AC | 4 ms
6,940 KB |
testcase_03 | AC | 5 ms
6,944 KB |
testcase_04 | AC | 4 ms
6,940 KB |
ソースコード
#include <bits/stdc++.h> using namespace std; using ll = long long; using P = pair<ll, ll>; #define rep(i, a, b) for(ll i = a; i < b; ++i) #define rrep(i, a, b) for(ll i = a; i >= b; --i) constexpr ll inf = 4e18; struct SetupIO { SetupIO() { ios::sync_with_stdio(0); cin.tie(0); cout << fixed << setprecision(30); } } setup_io; using ull = unsigned long long; int main(void) { int t; cin >> t; while(t--) { int n; ull x; cin >> n >> x; vector<int> c(n); rep(i, 0, n) { cin >> c[i]; } if(bit_floor(x) >= (1ull << c[n - 1])) { int bit = -1; rrep(i, n - 1, 0) { if(!((1ull << c[i]) & x)) { bit = c[i]; break; } } if(bit == -1) { cout << 0 << '\n'; continue; } ull right = (x / (1ull << bit) * (1ull << bit)) | (1ull << bit); ull left = x / (1ull << bit) * (1ull << bit) - 1; cout << 2 * min(right - x, x - left) << '\n'; } else { ull right = 1ull << c[n - 1]; cout << 2 * (right - x) << '\n'; } } }