結果
問題 | No.2844 Birthday Party Decoration |
ユーザー | tottoripaper |
提出日時 | 2024-08-24 01:22:44 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,361 bytes |
コンパイル時間 | 2,346 ms |
コンパイル使用メモリ | 212,184 KB |
実行使用メモリ | 6,944 KB |
最終ジャッジ日時 | 2024-08-24 01:22:48 |
合計ジャッジ時間 | 3,129 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
6,816 KB |
testcase_01 | WA | - |
testcase_02 | WA | - |
testcase_03 | WA | - |
testcase_04 | WA | - |
ソースコード
#include <bits/stdc++.h> #define fst(t) std::get<0>(t) #define snd(t) std::get<1>(t) using ll = std::int64_t; using P = std::tuple<ll, ll>; int main(){ std::cin.tie(nullptr); std::ios::sync_with_stdio(false); int T; std::cin >> T; for(int _=0;_<T;_++){ int N; ll X; std::cin >> N >> X; std::vector<ll> c(N); for(int i=0;i<N;i++){ std::cin >> c[i]; } std::vector<P> p; for(int i=0;i<N;i++){ if(X >> c[i] & 1){ p.emplace_back(X, i); continue; } if(X >= (1ll << c[i])){ p.emplace_back((X & ~((1ll << c[i]) - 1)) - 1, i); } p.emplace_back((X & ~((1ll << c[i]) - 1)) | (1ll << c[i]), i); } std::sort(std::begin(p), std::end(p)); ll res = 0; for(int i=0;i+N<=p.size();i++){ int last = -1; ll set = 0; for(int j=i;j<p.size();j++){ set |= 1ll << snd(p[j]); if(set == (1ll << N) - 1){ last = j; break; } } if(last != -1){ res = 2ll * (std::max(fst(p[last]), X) - std::min(fst(p[i]), X)); } } std::cout << res << std::endl; } }