結果
問題 | No.2844 Birthday Party Decoration |
ユーザー | Ayuna |
提出日時 | 2024-07-14 15:00:39 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
AC
|
実行時間 | 11 ms / 2,000 ms |
コード長 | 627 bytes |
コンパイル時間 | 986 ms |
コンパイル使用メモリ | 79,428 KB |
実行使用メモリ | 6,940 KB |
最終ジャッジ日時 | 2024-07-14 15:00:41 |
合計ジャッジ時間 | 2,037 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
6,816 KB |
testcase_01 | AC | 11 ms
6,940 KB |
testcase_02 | AC | 10 ms
6,940 KB |
testcase_03 | AC | 11 ms
6,940 KB |
testcase_04 | AC | 10 ms
6,940 KB |
ソースコード
#include <iostream> #include <vector> #include <algorithm> using namespace std; void solve(){ int n; long long x; cin >> n >> x; vector<int> c(n); for (int &i: c) cin >> i; vector<int> move; for(int i: c){ if (!(x & (1ll << i))) move.push_back(i); } reverse(move.begin(), move.end()); for (int &i: move){ long long plus = ((x >> i) + 1ll) << i; long long minus = ((x >> i) << i) - 1ll; if (minus < 0) cout << (plus - x) * 2ll << endl; else cout << min(plus - x, x - minus) * 2ll << endl; return; } cout << 0 << endl; } int main(){ int t; cin >> t; while(t--) solve(); }