結果
問題 | No.822 Bitwise AND |
ユーザー | ningenMe |
提出日時 | 2020-07-26 13:44:34 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
AC
|
実行時間 | 434 ms / 2,000 ms |
コード長 | 7,026 bytes |
コンパイル時間 | 2,441 ms |
コンパイル使用メモリ | 212,940 KB |
実行使用メモリ | 6,944 KB |
最終ジャッジ日時 | 2024-06-25 18:21:34 |
合計ジャッジ時間 | 4,007 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 434 ms
6,812 KB |
testcase_01 | AC | 6 ms
6,944 KB |
testcase_02 | AC | 5 ms
6,944 KB |
testcase_03 | AC | 2 ms
6,944 KB |
testcase_04 | AC | 17 ms
6,940 KB |
testcase_05 | AC | 3 ms
6,940 KB |
testcase_06 | AC | 4 ms
6,944 KB |
testcase_07 | AC | 16 ms
6,944 KB |
testcase_08 | AC | 9 ms
6,944 KB |
testcase_09 | AC | 6 ms
6,940 KB |
testcase_10 | AC | 2 ms
6,940 KB |
testcase_11 | AC | 2 ms
6,944 KB |
testcase_12 | AC | 9 ms
6,940 KB |
testcase_13 | AC | 3 ms
6,940 KB |
testcase_14 | AC | 2 ms
6,944 KB |
testcase_15 | AC | 3 ms
6,940 KB |
testcase_16 | AC | 5 ms
6,940 KB |
ソースコード
#include <bits/stdc++.h> using namespace std; using ll = long long; #define ALL(obj) (obj).begin(),(obj).end() #define SPEED cin.tie(0);ios::sync_with_stdio(false); template<class T> using PQ = priority_queue<T>; template<class T> using PQR = priority_queue<T,vector<T>,greater<T>>; constexpr long long MOD = (long long)1e9 + 7; constexpr long long MOD2 = 998244353; constexpr long long HIGHINF = (long long)1e18; constexpr long long LOWINF = (long long)1e15; constexpr long double PI = 3.1415926535897932384626433L; template <class T> vector<T> multivector(size_t N,T init){return vector<T>(N,init);} template <class... T> auto multivector(size_t N,T... t){return vector<decltype(multivector(t...))>(N,multivector(t...));} template <class T> void corner(bool flg, T hoge) {if (flg) {cout << hoge << endl; exit(0);}} template <class T, class U>ostream &operator<<(ostream &o, const map<T, U>&obj) {o << "{"; for (auto &x : obj) o << " {" << x.first << " : " << x.second << "}" << ","; o << " }"; return o;} template <class T>ostream &operator<<(ostream &o, const set<T>&obj) {o << "{"; for (auto itr = obj.begin(); itr != obj.end(); ++itr) o << (itr != obj.begin() ? ", " : "") << *itr; o << "}"; return o;} template <class T>ostream &operator<<(ostream &o, const multiset<T>&obj) {o << "{"; for (auto itr = obj.begin(); itr != obj.end(); ++itr) o << (itr != obj.begin() ? ", " : "") << *itr; o << "}"; return o;} template <class T>ostream &operator<<(ostream &o, const vector<T>&obj) {o << "{"; for (int i = 0; i < (int)obj.size(); ++i)o << (i > 0 ? ", " : "") << obj[i]; o << "}"; return o;} template <class T, class U>ostream &operator<<(ostream &o, const pair<T, U>&obj) {o << "{" << obj.first << ", " << obj.second << "}"; return o;} template <template <class tmp> class T, class U> ostream &operator<<(ostream &o, const T<U> &obj) {o << "{"; for (auto itr = obj.begin(); itr != obj.end(); ++itr)o << (itr != obj.begin() ? ", " : "") << *itr; o << "}"; return o;} void print(void) {cout << endl;} template <class Head> void print(Head&& head) {cout << head;print();} template <class Head, class... Tail> void print(Head&& head, Tail&&... tail) {cout << head << " ";print(forward<Tail>(tail)...);} template <class T> void chmax(T& a, const T b){a=max(a,b);} template <class T> void chmin(T& a, const T b){a=min(a,b);} void YN(bool flg) {cout << (flg ? "YES" : "NO") << endl;} void Yn(bool flg) {cout << (flg ? "Yes" : "No") << endl;} void yn(bool flg) {cout << (flg ? "yes" : "no") << endl;} /* * @title Rbst */ template<class Operator> class Rbst { using TypeNode = typename Operator::TypeNode; unsigned int x = 123456789, y = 362436069, z = 521288629, w = 88675123; unsigned int xor_shift() { unsigned int t = (x ^ (x << 11)); x = y; y = z; z = w; return (w = (w ^ (w >> 19)) ^ (t ^ (t >> 8))); } struct Node { Node *left, *right; TypeNode val; int size; TypeNode sum; Node() : val(Operator::unit_node), size(1), sum(Operator::unit_node) { left = right = nullptr; } Node(TypeNode v) : val(v), size(1), sum(v) { left = right = nullptr; } }; Node* root; inline int size(Node *node) { return node==nullptr ? 0 : node->size; } inline TypeNode sum(Node *node) { return node==nullptr ? Operator::unit_node : node->sum; } inline Node* update(Node *node) { node->size = size(node->left) + size(node->right) + 1; node->sum = Operator::func_node(sum(node->left),sum(node->right),node->val); return node; } inline TypeNode get(Node *node, int k) { if (node==nullptr) return -1; if (k == size(node->left)) return node->val; if (k < size(node->left)) return get(node->left, k); else return get(node->right, k-1 - size(node->left)); } inline int lower_bound(Node *node, TypeNode val) { if (node==nullptr) return 0; if (val <= node->val) return lower_bound(node->left, val); else return size(node->left) + lower_bound(node->right, val) + 1; } inline int upper_bound(Node *node, TypeNode val) { if (node==nullptr) return 0; if (val >= node->val) return size(node->left) + upper_bound(node->right, val) + 1; else return upper_bound(node->left, val); } Node* merge(Node *left, Node *right) { if (left==nullptr) return right; if (right==nullptr) return left; if (xor_shift() % (left->size + right->size) < left->size) { left->right = merge(left->right, right); return update(left); } else { right->left = merge(left, right->left); return update(right); } } pair<Node*, Node*> split(Node* node, int k) { if (node==nullptr) return make_pair(node, node); if (k <= size(node->left)) { pair<Node*, Node*> sub = split(node->left, k); node->left = sub.second; return make_pair(sub.first, update(node)); } else { pair<Node*, Node*> sub = split(node->right, k-1 - size(node->left)); node->right = sub.first; return make_pair(update(node), sub.second); } } Rbst(Node* node):root(node){} public: Rbst() : root(nullptr) {} inline int size() { return size(this->root); } inline TypeNode sum() { return sum(this->root); } inline int lower_bound(TypeNode val) { return lower_bound(this->root, val); } inline int upper_bound(TypeNode val) { return upper_bound(this->root, val); } inline int count(TypeNode val) { return upper_bound(val) - lower_bound(val); } inline TypeNode get(int k) { return get(this->root, k); } inline TypeNode get_median() { //奇数の時N/2 return get(this->root, (size()-1)/2); } void merge(Rbst another) { root = merge(this->root, another.root); } void insert(const TypeNode val) { pair<Node*, Node*> sub = split(this->root, this->lower_bound(val)); this->root = this->merge(this->merge(sub.first, new Node(val)), sub.second); } void erase(const TypeNode val) { if (!this->count(val)) return; pair<Node*, Node*> sub = this->split(this->root, this->lower_bound(val)); this->root = this->merge(sub.first, this->split(sub.second, 1).second); } }; //https://atcoder.jp/contests/abc154/tasks/abc154_c //https://atcoder.jp/contests/arc033/tasks/arc033_3 //https://atcoder.jp/contests/m-solutions2020/tasks/m_solutions2020_c //https://yukicoder.me/problems/no/919 //https://yukicoder.me/problems/no/649 template<class T> struct NodeSum { using TypeNode = T; inline static constexpr TypeNode unit_node = 0; inline static constexpr TypeNode func_node(TypeNode l,TypeNode c,TypeNode r){return l+c+r;} }; template<class T> struct NodePair { using TypeNode = T; inline static constexpr TypeNode unit_node = {0,0}; inline static constexpr TypeNode func_node(TypeNode l,TypeNode c,TypeNode r){return {0,0};} }; int main() { int N,K; cin >> N >> K; corner(N+1 <= K, "INF"); Rbst<NodePair<pair<int,int>>> st; for(int i = 0; i < (1<<20); ++i) { if((i&N) != N) continue; for(int j = -K; j <= K; ++j) { int a = i, b = i + j; if(a>b) swap(a,b); if(0<=b && b-a<=K && ((a&b)==N) && !st.count({a,b})) st.insert({a,b}); } } cout << st.size() << endl; return 0; }