結果
問題 | No.2844 Birthday Party Decoration |
ユーザー | 沙耶花 |
提出日時 | 2024-08-23 21:13:11 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 961 bytes |
コンパイル時間 | 4,902 ms |
コンパイル使用メモリ | 262,152 KB |
実行使用メモリ | 6,944 KB |
最終ジャッジ日時 | 2024-08-23 21:13:17 |
合計ジャッジ時間 | 4,886 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
6,812 KB |
testcase_01 | WA | - |
testcase_02 | WA | - |
testcase_03 | WA | - |
testcase_04 | WA | - |
ソースコード
#include <stdio.h> #include <bits/stdc++.h> #include <atcoder/all> using namespace atcoder; using mint = modint998244353; using namespace std; #define rep(i,n) for (int i = 0; i < (n); ++i) #define Inf32 1000000001 #define Inf64 1000000000000000001 int main(){ int _t; cin>>_t; rep(_,_t){ long long n,x; cin>>n>>x; long long f = 0; rep(i,n){ int a; cin>>a; f |= 1LL<<a; } long long ox = x; rep(i,60){ if((x>>i)&1){ f &= ~(1LL<<i); } } if(f==0){ cout<<0<<endl; continue; } long long msb = 0; rep(i,60){ if((f>>i)&1)msb = 1LL<<i; } long long ans = Inf64; if(ox>=msb){ long long t = ox; rep(i,60){ if((1LL<<i)<=msb){ t |= 1LL<<i; } else{ if((t>>i)&1){ t ^= 1LL<<i; break; } } } ans = min(ans,abs(t-ox)); } rep(i,60){ if((1LL<<i)>=msb){ x &= ~(1LL<<i); } } ans = min(ans,abs(msb-x)); cout<<ans*2<<endl; } return 0; }