This documentation is automatically generated by online-judge-tools/verification-helper
#define PROBLEM "https://judge.yosupo.jp/problem/bitwise_and_convolution"
#include <iostream>
#include <vector>
#include "../../../lib/convolution/bitwise_and_convolution.hpp"
#include "../../../lib/math/modint.hpp"
using namespace std;
using mint = ModInt<998244353>;
int main(){
int n; cin >> n;
int m = 1LL << n;
vector<mint> a(m), b(m);
for(int i = 0; i < m; i++){
cin >> a[i];
}
for(int i = 0; i < m; i++){
cin >> b[i];
}
vector<mint> c = bitwise_and_convolution(a, b);
for(int i = 0; i < m; i++){
cout << c[i] << " \n"[i == m - 1];
}
}
#line 1 "test/library_checker/convolution/bitwise_and_convolution.test.cpp"
#define PROBLEM "https://judge.yosupo.jp/problem/bitwise_and_convolution"
#include <iostream>
#include <vector>
#line 2 "lib/convolution/bitwise_and_convolution.hpp"
/**
* @brief Bitwise AND Convolution
*/
#line 8 "lib/convolution/bitwise_and_convolution.hpp"
#include <cassert>
#line 2 "lib/convolution/set_zeta_mobius_transform.hpp"
/**
* @brief Set Zeta/Mobius Transform
*/
#line 9 "lib/convolution/set_zeta_mobius_transform.hpp"
template <typename T>
void superset_zeta_transform(std::vector<T> &f){
const int n = f.size();
assert((n & (n - 1)) == 0);
for(int i = 1; i < n; i <<= 1){
for(int j = 0; j < n; ++j){
if((j & i) == 0){
f[j] += f[j | i];
}
}
}
}
template <typename T>
void superset_mobius_transform(std::vector<T> &f){
const int n = f.size();
assert((n & (n - 1)) == 0);
for(int i = 1; i < n; i <<= 1){
for(int j = 0; j < n; ++j){
if((j & i) == 0){
f[j] -= f[j | i];
}
}
}
}
template <typename T>
void subset_zeta_transform(std::vector<T> &f){
const int n = f.size();
assert((n & (n - 1)) == 0);
for(int i = 1; i < n; i <<= 1){
for(int j = 0; j < n; ++j){
if((j & i) == 0){
f[j | i] += f[j];
}
}
}
}
template <typename T>
void subset_mobius_transform(std::vector<T> &f){
const int n = f.size();
assert((n & (n - 1)) == 0);
for(int i = 1; i < n; i <<= 1){
for(int j = 0; j < n; ++j){
if((j & i) == 0){
f[j | i] -= f[j];
}
}
}
}
#line 11 "lib/convolution/bitwise_and_convolution.hpp"
template <typename T>
std::vector<T> bitwise_and_convolution(std::vector<T> f, std::vector<T> g){
const int n = (int) f.size();
assert(f.size() == g.size());
assert((n & (n - 1)) == 0);
superset_zeta_transform(f);
superset_zeta_transform(g);
for(int i = 0; i < n; ++i){
f[i] *= g[i];
}
superset_mobius_transform(f);
return f;
}
#line 2 "lib/math/modint.hpp"
#line 5 "lib/math/modint.hpp"
/**
* @brief ModInt
* @docs docs/math/modint.md
*/
template <long long Modulus>
struct ModInt{
long long val;
static constexpr int mod() { return Modulus; }
constexpr ModInt(const long long _val = 0) noexcept : val(_val) {
normalize();
}
void normalize(){
val = (val % Modulus + Modulus) % Modulus;
}
inline ModInt &operator+=(const ModInt &rhs) noexcept {
if(val += rhs.val, val >= Modulus) val -= Modulus;
return *this;
}
inline ModInt &operator-=(const ModInt &rhs) noexcept {
if(val -= rhs.val, val < 0) val += Modulus;
return *this;
}
inline ModInt &operator*=(const ModInt &rhs) noexcept {
val = val * rhs.val % Modulus;
return *this;
}
inline ModInt &operator/=(const ModInt &rhs) noexcept {
val = val * inv(rhs.val).val % Modulus;
return *this;
}
inline ModInt &operator++() noexcept {
if(++val >= Modulus) val -= Modulus;
return *this;
}
inline ModInt operator++(int) noexcept {
ModInt t = val;
if(++val >= Modulus) val -= Modulus;
return t;
}
inline ModInt &operator--() noexcept {
if(--val < 0) val += Modulus;
return *this;
}
inline ModInt operator--(int) noexcept {
ModInt t = val;
if(--val < 0) val += Modulus;
return t;
}
inline ModInt operator-() const noexcept { return (Modulus - val) % Modulus; }
inline ModInt inv(void) const { return inv(val); }
ModInt pow(long long n) const {
assert(0 <= n);
ModInt x = *this, r = 1;
while(n){
if(n & 1) r *= x;
x *= x;
n >>= 1;
}
return r;
}
ModInt inv(const long long n) const {
long long a = n, b = Modulus, u = 1, v = 0;
while(b){
long long t = a / b;
a -= t * b; std::swap(a, b);
u -= t * v; std::swap(u, v);
}
u %= Modulus;
if(u < 0) u += Modulus;
return u;
}
friend inline ModInt operator+(const ModInt &lhs, const ModInt &rhs) noexcept { return ModInt(lhs) += rhs; }
friend inline ModInt operator-(const ModInt &lhs, const ModInt &rhs) noexcept { return ModInt(lhs) -= rhs; }
friend inline ModInt operator*(const ModInt &lhs, const ModInt &rhs) noexcept { return ModInt(lhs) *= rhs; }
friend inline ModInt operator/(const ModInt &lhs, const ModInt &rhs) noexcept { return ModInt(lhs) /= rhs; }
friend inline bool operator==(const ModInt &lhs, const ModInt &rhs) noexcept { return lhs.val == rhs.val; }
friend inline bool operator!=(const ModInt &lhs, const ModInt &rhs) noexcept { return lhs.val != rhs.val; }
friend inline std::istream &operator>>(std::istream &is, ModInt &x) noexcept {
is >> x.val;
x.normalize();
return is;
}
friend inline std::ostream &operator<<(std::ostream &os, const ModInt &x) noexcept { return os << x.val; }
};
#line 7 "test/library_checker/convolution/bitwise_and_convolution.test.cpp"
using namespace std;
using mint = ModInt<998244353>;
int main(){
int n; cin >> n;
int m = 1LL << n;
vector<mint> a(m), b(m);
for(int i = 0; i < m; i++){
cin >> a[i];
}
for(int i = 0; i < m; i++){
cin >> b[i];
}
vector<mint> c = bitwise_and_convolution(a, b);
for(int i = 0; i < m; i++){
cout << c[i] << " \n"[i == m - 1];
}
}