結果
問題 | No.2844 Birthday Party Decoration |
ユーザー | Today03 |
提出日時 | 2024-08-23 22:34:31 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,428 bytes |
コンパイル時間 | 2,220 ms |
コンパイル使用メモリ | 206,356 KB |
実行使用メモリ | 6,944 KB |
最終ジャッジ日時 | 2024-08-23 22:34:41 |
合計ジャッジ時間 | 4,660 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
6,816 KB |
testcase_01 | WA | - |
testcase_02 | WA | - |
testcase_03 | WA | - |
testcase_04 | WA | - |
ソースコード
#include <bits/stdc++.h> using namespace std; using ll = long long; const int INF = 1e9 + 10; const ll INFL = 4e18; int main() { int T; cin >> T; while (T--) { int N; ll X; cin >> N >> X; vector<int> C(N); for (int i = 0; i < N; i++) cin >> C[i]; auto f = [&](ll x) { ll lo = x - 1, hi = INFL; while (hi - lo > 1) { ll mid = (hi + lo) / 2; int dif = -1; for (int i = 60; i >= 0; i--) { if ((mid >> i & 1) != (x >> i & 1)) { dif = i; break; } } vector<int> need; for (int i = 0; i < N; i++) { if (!(x >> C[i] & 1)) { need.push_back(C[i]); } } if (!need.empty() && need.back() > dif) { lo = mid; } else { hi = mid; } } return hi; }; ll ans = abs(f(X) - X) * 2; for (int i = 0; i < N; i++) { ll it = 1ll << C[i]; if (it <= X) { it |= X & ((1ll << i) - 1); ll res = f(it); ans = min(ans, X - it * 2 + res); } } cout << ans << endl; } }