#ifndef INCLUDE_MODE
#define INCLUDE_MODE
// #define REACTIVE
// #define USE_GETLINE
#endif
#ifdef INCLUDE_MAIN
IN VO Solve()
{
CEXPR( uint , P , 998244353 );
using MP = Mod
;
CEXPR( int , bound_N , 5000 );
CIN_ASSERT( N , 1 , bound_N);
SecondStirlingNumberCalculator ssn{};
MP overlapping[N+1][N+1] = {};
overlapping[0][1] = MP::one();
overlapping[1][1] = MP::Derepresent( 2 );
FOREQ( j , 2 , N ){
overlapping[j][1] = overlapping[j-1][1] * overlapping[1][1];
}
FOREQ( j , 0 , N ){
auto& overlapping_j = overlapping[j];
overlapping_j[0] = MP::one();
overlapping_j[1] -= MP::Derepresent( j );
FOREQ( i , 2 , N ){
overlapping_j[i] = overlapping_j[i-1] * overlapping_j[1];
}
}
MP answer{};
FOREQ( i , 0 , N ){
FOREQ( j , 0 , i ){
answer += ssn.CountDisjointCover( N , i , j ) * overlapping[j][N-i];
}
}
RETURN( answer );
}
REPEAT_MAIN(1);
#else // INCLUDE_MAIN
#ifdef INCLUDE_SUB
// COMPAREに使用。圧縮時は削除する。
ll Naive( int N , int M , int K )
{
ll answer = N + M + K;
return answer;
}
// COMPAREに使用。圧縮時は削除する。
ll Answer( ll N , ll M , ll K )
{
// START_WATCH;
ll answer = N + M + K;
// // TLに準じる乱択や全探索。デフォルトの猶予は100.0[ms]。
// CEXPR( double , TL , 2000.0 );
// while( CHECK_WATCH( TL ) ){
// }
return answer;
}
// 圧縮時は中身だけ削除する。
IN VO Experiment()
{
// CEXPR( int , bound , 10 );
// FOREQ( N , 0 , bound ){
// FOREQ( M , 0 , bound ){
// FOREQ( K , 0 , bound ){
// COUT( N , M , K , ":" , Naive( N , M , K ) );
// }
// }
// // cout << Naive( N ) << ",\n"[N==bound];
// }
}
// 圧縮時は中身だけ削除する。
IN VO SmallTest()
{
// CEXPR( int , bound , 10 );
// FOREQ( N , 0 , bound ){
// FOREQ( M , 0 , bound ){
// FOREQ( K , 0 , bound ){
// COMPARE( N , M , K );
// }
// }
// // COMPARE( N );
// }
}
#define INCLUDE_MAIN
#include __FILE__
#else // INCLUDE_SUB
#ifdef INCLUDE_LIBRARY
/*
C-x 3 C-x o C-x C-fによるファイル操作用
BFS (5KB)
c:/Users/user/Documents/Programming/Mathematics/Geometry/Graph/BreadthFirstSearch/compress.txt
CoordinateCompress (3KB)
c:/Users/user/Documents/Programming/Mathematics/SetTheory/DirectProduct/CoordinateCompress/compress.txt
DFSOnTree (11KB)
c:/Users/user/Documents/Programming/Mathematics/Geometry/Graph/DepthFirstSearch/Tree/a.hpp
Divisor (4KB)
c:/Users/user/Documents/Programming/Mathematics/Arithmetic/Prime/Divisor/compress.txt
IntervalAddBIT (9KB)
c:/Users/user/Documents/Programming/Mathematics/SetTheory/DirectProduct/AffineSpace/BIT/IntervalAdd/compress.txt
Polynomial (21KB)
c:/Users/user/Documents/Programming/Mathematics/Polynomial/compress.txt
UnionFind (3KB)
c:/Users/user/Documents/Programming/Mathematics/Geometry/Graph/UnionFindForest/compress.txt
*/
// VVV 常設でないライブラリは以下に挿入する。
template inline constexpr INT Residue( INT n ) noexcept { return move( n < 0 ? ( ( ( ( ++n ) *= -1 ) %= M ) *= -1 ) += M - 1 : n %= M ); }
template inline constexpr INT1 Residue( INT1 n , const INT2& M ) noexcept { return move( n < 0 ? ( ( ( ( ++n ) *= -1 ) %= M ) *= -1 ) += M - 1 : n %= M ); }
template inline constexpr INT& Residue998244353( INT& n ) noexcept { constexpr const uint trunc = ( 1 << 23 ) - 1; INT n_u = n >> 23; n &= trunc; INT n_uq = ( n_u / 7 ) / 17; n_u -= n_uq * 119; n += n_u << 23; return n < n_uq ? n += 998244353 - n_uq : n -= n_uq; }
using INT_TYPE_FOR_MOD = uint;
template class Mod;
template
class ConstantsForMod
{
friend class Mod;
private:
ConstantsForMod() = delete;
static constexpr const INT_TYPE_FOR_MOD g_memory_bound = 1000000;
static constexpr const INT_TYPE_FOR_MOD g_memory_length = M < g_memory_bound ? M : g_memory_bound;
static constexpr INT_TYPE_FOR_MOD g_M_minus = M - 1;
static constexpr INT_TYPE_FOR_MOD g_M_minus_2 = M - 2;
static constexpr INT_TYPE_FOR_MOD g_M_minus_2_neg = 2 - M;
};
#define DECLARATION_OF_COMPARISON_FOR_MOD( FUNC ) \
inline constexpr bool operator FUNC( const Mod& n ) const noexcept \
#define DECLARATION_OF_ARITHMETIC_FOR_MOD( FUNC ) \
inline constexpr Mod operator FUNC( const Mod& n ) const noexcept; \
#define DEFINITION_OF_COMPARISON_FOR_MOD( FUNC ) \
template inline constexpr bool Mod::operator FUNC( const Mod& n ) const noexcept { return m_n FUNC n.m_n; } \
#define DEFINITION_OF_ARITHMETIC_FOR_MOD( FUNC ) \
template inline constexpr Mod Mod::operator FUNC( const Mod& n ) const noexcept { return move( Mod( *this ) FUNC ## = n ); } \
template inline constexpr Mod operator FUNC( T n0 , const Mod& n1 ) noexcept { return move( Mod( move( n0 ) ) FUNC ## = n1 ); } \
template
class Mod
{
protected:
INT_TYPE_FOR_MOD m_n;
public:
inline constexpr Mod() noexcept;
inline constexpr Mod( const Mod& n ) noexcept;
inline constexpr Mod( Mod&& n ) noexcept;
template inline constexpr Mod( T n ) noexcept;
inline constexpr Mod& operator=( Mod n ) noexcept;
inline constexpr Mod& operator+=( const Mod& n ) noexcept;
inline constexpr Mod& operator-=( const Mod& n ) noexcept;
inline constexpr Mod& operator*=( const Mod& n ) noexcept;
inline Mod& operator/=( const Mod& n );
// n>=0である場合のみサポート。計算量O(log n)で2^n倍する。
inline constexpr Mod& operator<<=( int n ) noexcept;
// n>=0かつMが奇数である場合のみサポート。計算量O(n)で2^{-n}倍する。
inline constexpr Mod& operator>>=( int n ) noexcept;
inline constexpr Mod& operator++() noexcept;
inline constexpr Mod operator++( int ) noexcept;
inline constexpr Mod& operator--() noexcept;
inline constexpr Mod operator--( int ) noexcept;
DECLARATION_OF_COMPARISON_FOR_MOD( == );
DECLARATION_OF_COMPARISON_FOR_MOD( != );
DECLARATION_OF_COMPARISON_FOR_MOD( < );
DECLARATION_OF_COMPARISON_FOR_MOD( <= );
DECLARATION_OF_COMPARISON_FOR_MOD( > );
DECLARATION_OF_COMPARISON_FOR_MOD( >= );
DECLARATION_OF_ARITHMETIC_FOR_MOD( + );
DECLARATION_OF_ARITHMETIC_FOR_MOD( - );
DECLARATION_OF_ARITHMETIC_FOR_MOD( * );
DECLARATION_OF_ARITHMETIC_FOR_MOD( / );
// n>=0である場合のみサポート。計算量O(log n)で2^n倍を返す。
inline constexpr Mod operator<<( int n ) const noexcept;
// n>=0かつMが奇数である場合のみサポート。計算量O(n)で2^{-n}倍を返す。
inline constexpr Mod operator>>( int n ) const noexcept;
inline constexpr Mod operator-() const noexcept;
// -1倍する。
inline constexpr Mod& SignInvert() noexcept;
// Mが素数である場合のみサポート。-1乗する。
inline Mod& Invert();
// Mが素数であるかexponent>=0である場合にのみサポート。exponent乗する。
template inline constexpr Mod& Power( INT exponent );
// グローバルスコープでswapを定義するためのもの。
inline constexpr void swap( Mod& n ) noexcept;
inline constexpr const INT_TYPE_FOR_MOD& Represent() const noexcept;
// 0 <= n < Mの場合のみサポート。
static inline constexpr Mod Derepresent( const INT_TYPE_FOR_MOD& n ) noexcept;
// Mが素数かつn < g_memory_lengthである場合のみサポート。
static inline const Mod& Inverse( const INT_TYPE_FOR_MOD& n ) noexcept;
// n < g_memory_lengthである場合のみサポート。
static inline const Mod& Factorial( const INT_TYPE_FOR_MOD& n ) noexcept;
// Mが素数かつn < g_memory_lengthである場合のみサポート。
static inline const Mod& FactorialInverse( const INT_TYPE_FOR_MOD& n ) noexcept;
// Mが素数かつn < g_memory_lengthである場合のみサポート。
static inline Mod Combination( const INT_TYPE_FOR_MOD& n , const INT_TYPE_FOR_MOD& i ) noexcept;
static inline const Mod& zero() noexcept;
static inline const Mod& one() noexcept;
private:
template inline constexpr Mod& PositivePower( INT exponent ) noexcept;
template inline constexpr Mod& NonNegativePower( INT exponent ) noexcept;
template inline constexpr Mod& Ref( T&& n ) noexcept;
// 0 <= n < Mの場合のみサポート。
static inline constexpr INT_TYPE_FOR_MOD& Normalise( INT_TYPE_FOR_MOD& n ) noexcept;
};
// Mが素数でありnが0でない場合にのみサポート。
template inline Mod Inverse( const Mod& n );
template inline constexpr Mod Inverse_constexpr( Mod n );
// Mが素数であるかexponent>=0である場合にのみサポート。
template inline constexpr Mod Power( Mod n , T exponent );
template inline constexpr void swap( Mod& n0 , Mod& n1 ) noexcept;
template inline string to_string( const Mod& n ) noexcept;
template inline basic_istream& operator>>( basic_istream& is , Mod& n );
template inline basic_ostream& operator<<( basic_ostream& os , const Mod& n );
template inline constexpr Mod::Mod() noexcept : m_n() {}
template inline constexpr Mod::Mod( const Mod& n ) noexcept : m_n( n.m_n ) {}
template inline constexpr Mod::Mod( Mod&& n ) noexcept : m_n( move( n.m_n ) ) {}
template template inline constexpr Mod::Mod( T n ) noexcept : m_n( Residue( move( n ) ) ) { static_assert( is_constructible_v > ); }
template inline constexpr Mod& Mod::operator=( Mod n ) noexcept { return Ref( m_n = move( n.m_n ) ); }
template inline constexpr Mod& Mod::operator+=( const Mod& n ) noexcept { return Ref( Normalise( m_n += n.m_n ) ); }
template inline constexpr Mod& Mod::operator-=( const Mod& n ) noexcept { return Ref( m_n < n.m_n ? ( m_n += M ) -= n.m_n : m_n -= n.m_n ); }
template inline constexpr Mod& Mod::operator*=( const Mod& n ) noexcept { return Ref( m_n = Residue( ull( m_n ) * n.m_n ) ); }
template <> inline constexpr Mod<998244353>& Mod<998244353>::operator*=( const Mod<998244353>& n ) noexcept { ull m_n_copy = m_n; return Ref( m_n = move( ( m_n_copy *= n.m_n ) < 998244353 ? m_n_copy : Residue998244353( m_n_copy ) ) ); }
template inline Mod& Mod::operator/=( const Mod& n ) { return operator*=( Mod( n ).Invert() ); }
template inline constexpr Mod& Mod::operator<<=( int n ) noexcept { assert( n >= 0 ); return *this *= Derepresent( 2 ).NonNegativePower( move( n ) ); }
template inline constexpr Mod& Mod::operator>>=( int n ) noexcept { assert( n >=0 ); while( n-- > 0 ){ ( ( m_n & 1 ) == 0 ? m_n : m_n += M ) >>= 1; } return *this; }
template inline constexpr Mod& Mod::operator++() noexcept { return Ref( m_n < ConstantsForMod::g_M_minus ? ++m_n : m_n = 0 ); }
template inline constexpr Mod Mod::operator++( int ) noexcept { Mod n{ *this }; operator++(); return n; }
template inline constexpr Mod& Mod::operator--() noexcept { return Ref( m_n == 0 ? m_n = ConstantsForMod::g_M_minus : --m_n ); }
template inline constexpr Mod Mod::operator--( int ) noexcept { Mod n{ *this }; operator--(); return n; }
DEFINITION_OF_COMPARISON_FOR_MOD( == );
DEFINITION_OF_COMPARISON_FOR_MOD( != );
DEFINITION_OF_COMPARISON_FOR_MOD( > );
DEFINITION_OF_COMPARISON_FOR_MOD( >= );
DEFINITION_OF_COMPARISON_FOR_MOD( < );
DEFINITION_OF_COMPARISON_FOR_MOD( <= );
DEFINITION_OF_ARITHMETIC_FOR_MOD( + );
DEFINITION_OF_ARITHMETIC_FOR_MOD( - );
DEFINITION_OF_ARITHMETIC_FOR_MOD( * );
DEFINITION_OF_ARITHMETIC_FOR_MOD( / );
template inline constexpr Mod Mod::operator<<( int n ) const noexcept { return move( Mod( *this ) <<= n ); }
template inline constexpr Mod Mod::operator>>( int n ) const noexcept { return move( Mod( *this ) >>= n ); }
template inline constexpr Mod Mod::operator-() const noexcept { return move( Mod( *this ).SignInvert() ); }
template inline constexpr Mod& Mod::SignInvert() noexcept { return Ref( m_n > 0 ? m_n = M - m_n : m_n ); }
template inline Mod& Mod::Invert() { assert( m_n != 0 ); INT_TYPE_FOR_MOD m_n_neg; return m_n < ConstantsForMod::g_memory_length ? Ref( m_n = Inverse( m_n ).m_n ) : ( ( m_n_neg = M - m_n ) < ConstantsForMod::g_memory_length ) ? Ref( m_n = M - Inverse( m_n_neg ).m_n ) : PositivePower( INT_TYPE_FOR_MOD( ConstantsForMod::g_M_minus_2 ) ); }
template template inline constexpr Mod& Mod::PositivePower( INT exponent ) noexcept { Mod power{ *this }; exponent--; while( exponent != 0 ){ ( exponent & 1 ) == 1 ? operator*=( power ) : *this; exponent >>= 1; power *= power; } return *this; }
template template inline constexpr Mod& Mod::NonNegativePower( INT exponent ) noexcept { return exponent == 0 ? Ref( m_n = 1 ) : Ref( PositivePower( move( exponent ) ) ); }
template template inline constexpr Mod& Mod::Power( INT exponent ) { bool neg = exponent < 0; assert( !( neg && m_n == 0 ) ); return neg ? PositivePower( move( exponent *= ConstantsForMod::g_M_minus_2_neg ) ) : NonNegativePower( move( exponent ) ); }
template inline constexpr void Mod::swap( Mod& n ) noexcept { std::swap( m_n , n.m_n ); }
template inline const Mod& Mod::Inverse( const INT_TYPE_FOR_MOD& n ) noexcept { static Mod memory[ConstantsForMod::g_memory_length] = { zero() , one() }; static INT_TYPE_FOR_MOD length_curr = 2; while( length_curr <= n ){ memory[length_curr].m_n = M - memory[M % length_curr].m_n * ull( M / length_curr ) % M; length_curr++; } return memory[n]; }
template inline const Mod& Mod::Factorial( const INT_TYPE_FOR_MOD& n ) noexcept { static Mod memory[ConstantsForMod::g_memory_length] = { one() , one() }; static INT_TYPE_FOR_MOD length_curr = 2; while( length_curr <= n ){ ( memory[length_curr] = memory[length_curr - 1] ) *= length_curr; length_curr++; } return memory[n]; }
template inline const Mod& Mod::FactorialInverse( const INT_TYPE_FOR_MOD& n ) noexcept { static Mod memory[ConstantsForMod::g_memory_length] = { one() , one() }; static INT_TYPE_FOR_MOD length_curr = 2; while( length_curr <= n ){ ( memory[length_curr] = memory[length_curr - 1] ) *= Inverse( length_curr ); length_curr++; } return memory[n]; }
template inline Mod Mod::Combination( const INT_TYPE_FOR_MOD& n , const INT_TYPE_FOR_MOD& i ) noexcept { return Factorial( n ) * FactorialInverse( i ) * FactorialInverse( n - i ); }
template inline constexpr const INT_TYPE_FOR_MOD& Mod::Represent() const noexcept { return m_n; }
template inline constexpr Mod Mod::Derepresent( const INT_TYPE_FOR_MOD& n ) noexcept { Mod n_copy{}; n_copy.m_n = n; return n_copy; }
template inline const Mod& Mod::zero() noexcept { static constexpr const Mod z{}; return z; }
template inline const Mod& Mod::one() noexcept { static constexpr const Mod o{ Derepresent( 1 ) }; return o; }
template template inline constexpr Mod& Mod::Ref( T&& n ) noexcept { return *this; }
template inline constexpr INT_TYPE_FOR_MOD& Mod::Normalise( INT_TYPE_FOR_MOD& n ) noexcept { return n < M ? n : n -= M; }
template inline Mod Inverse( const Mod& n ) { return move( Mod( n ).Invert() ); }
template inline constexpr Mod Inverse_constrexpr( Mod n ) noexcept { return move( n.NonNegativePower( M - 2 ) ); }
template inline constexpr Mod Power( Mod n , INT exponent ) { return move( n.Power( move( exponent ) ) ); }
template inline constexpr void swap( Mod& n0 , Mod& n1 ) noexcept { n0.swap( n1 ); }
template inline string to_string( const Mod& n ) noexcept { return to_string( n.Represent() ) + " + " + to_string( M ) + "Z"; }
template inline basic_istream& operator>>( basic_istream& is , Mod& n ) { ll m; is >> m; n = m; return is; }
template inline basic_ostream& operator<<( basic_ostream& os , const Mod& n ) { return os << n.Represent(); }
template
class SecondStirlingNumberCalculator
{
private:
// N元集合の非交叉非空部分集合i個による被覆の個数をm_val[N][i]に格納する。
T m_val[length][length];
public:
// (コンパイル時に)計算量O(length^2)で構築する。
constexpr inline SecondStirlingNumberCalculator();
constexpr inline const T ( &operator[]( const int& i ) const )[length];
// 以下Nと表せる場合のみサポート。
// N元集合の長さiの非交叉非空部分集合列による被覆の個数を返す。(O(log min{N,i}))
// (i彩色の個数はこれらを足し合わせればよい)
inline T CountDisjointCoverSequence( const int& N , const int& i ) const;
// N元集合の長さiの非交叉非空部分集合列の個数を返す。(O(log min{N,i}))
inline T CountDisjointSubsetSequence( const int& N , const int& i ) const;
// 以下Mがlength以上の素数である場合のみサポート。
// N元集合の要素数nの部分集合の非交叉非空部分集合i個による被覆の個数を返す。(O(log N))
inline T CountDisjointCover( const int& N , const int& n , const int& i ) const;
// N元集合の要素数nの部分集合の長さiの非交叉非空部分集合列による被覆の個数を返す。(O(log N))
inline T CountDisjointCoverSequence( const int& N , const int& n , const int& i ) const;
};
template constexpr inline SecondStirlingNumberCalculator::SecondStirlingNumberCalculator() : m_val()
{
m_val[0][0] = 1;
for( int i = 1 ; i < length ; i++ ){
auto& m_val_i = m_val[i];
const auto& m_val_i_minus = m_val[i - 1];
for( int j = 1 ; j < i ; j++ ){
( ( m_val_i[j] = m_val_i_minus[j] ) *= j ) += m_val_i_minus[j - 1];
}
m_val_i[i] = 1;
}
}
template constexpr inline const T ( &SecondStirlingNumberCalculator::operator[]( const int& i ) const )[length] { assert( i < length ); return m_val[i]; }
template constexpr inline T SecondStirlingNumberCalculator::CountDisjointCover( const int& N , const int& i ) const { assert( N < length ); return i <= N ? m_val[N][i] : T(); }
template constexpr inline T SecondStirlingNumberCalculator::CountDisjointSubset( const int& N , const int& i ) const { assert( N < length ); return i < N ? m_val[N][i] + m_val[N][i+1] : i == N ? m_val[N][i] : T(); }
template inline T SecondStirlingNumberCalculator