#include<bits/stdc++.h> using std::cin,std::cout,std::endl;int _IO=[]{std::ios::sync_with_stdio(0);cin.tie(0); cout.tie(0); return 0;}(); namespace OY { template <typename _ModType> struct Barrett { _ModType m_P; __uint128_t m_Pinv; constexpr Barrett() = default; constexpr explicit Barrett(_ModType __P) : m_P(__P), m_Pinv(-uint64_t(__P) / __P + 1) {} constexpr _ModType mod() const { return m_P; } constexpr _ModType mod(uint64_t __a) const { __a -= uint64_t(m_Pinv * __a >> 64) * m_P + m_P; if (__a >= m_P) __a += m_P; return __a; } constexpr _ModType plus(_ModType __a, _ModType __b) { if (__a += __b; __a >= m_P) __a -= m_P; return __a; } constexpr _ModType minus(_ModType __a, _ModType __b) { if (__a += m_P - __b; __a >= m_P) __a -= m_P; return __a; } constexpr _ModType multiply(uint64_t __a, uint64_t __b) const { if constexpr (std::is_same_v<_ModType, uint64_t>) return multiply_ld(__a, __b); else return multiply_64(__a, __b); } constexpr _ModType multiply_64(uint64_t __a, uint64_t __b) const { // assert(__a * __b < 1ull << 64); return mod(__a * __b); } constexpr _ModType multiply_128(uint64_t __a, uint64_t __b) const { if (std::__countl_zero(__a) + std::__countl_zero(__b) >= 64) return multiply_64(__a, __b); return __uint128_t(__a) * __b % m_P; } constexpr _ModType multiply_ld(uint64_t __a, uint64_t __b) const { // assert(m_P < 1ull << 63 && __a < m_P && __b < m_P); if (std::__countl_zero(__a) + std::__countl_zero(__b) >= 64) return multiply_64(__a, __b); int64_t res = __a * __b - uint64_t(1.L / m_P * __a * __b) * m_P; if (res < 0) res += m_P; else if (res >= m_P) res -= m_P; return res; } constexpr _ModType pow(uint64_t __a, uint64_t __n) const { if constexpr (std::is_same_v<_ModType, uint64_t>) return pow_ld(__a, __n); else return pow_64(__a, __n); } constexpr _ModType pow_64(uint64_t __a, uint64_t __n) const { // assert(m_P < 1ull << 32); _ModType res = 1, b = mod(__a); while (__n) { if (__n & 1) res = multiply_64(res, b); b = multiply_64(b, b); __n >>= 1; } return res; } constexpr _ModType pow_128(uint64_t __a, uint64_t __n) const { _ModType res = 1, b = mod(__a); while (__n) { if (__n & 1) res = multiply_128(res, b); b = multiply_128(b, b); __n >>= 1; } return res; } constexpr _ModType pow_ld(uint64_t __a, uint64_t __n) const { _ModType res = 1, b = mod(__a); while (__n) { if (__n & 1) res = multiply_ld(res, b); b = multiply_ld(b, b); __n >>= 1; } return res; } template <typename _Tp> constexpr _Tp divide(_Tp __a) const { if (__a < m_P) return 0; _Tp res = m_Pinv * __a >> 64; if (__a - res * m_P >= m_P) res++; return res; } template <typename _Tp> constexpr std::pair<_Tp, _Tp> divmod(_Tp __a) const { _Tp quo = (__a * m_Pinv) >> 64, rem = __a - quo * m_P; if (rem >= m_P) { quo++; rem -= m_P; } return {quo, rem}; } }; using Barrett32 = Barrett<uint32_t>; using Barrett64 = Barrett<uint64_t>; } namespace OY { template <typename _ModType> struct _MontgomeryTag; template <> struct _MontgomeryTag<uint32_t> { using long_type = uint64_t; static constexpr uint32_t limit = (1u << 30) - 1; static constexpr uint32_t inv_loop = 4; static constexpr uint32_t length = 32; }; template <> struct _MontgomeryTag<uint64_t> { using long_type = __uint128_t; static constexpr uint64_t limit = (1ull << 63) - 1; static constexpr uint32_t inv_loop = 5; static constexpr uint32_t length = 64; }; template <typename _ModType> struct Montgomery { using _FastType = _ModType; using _LongType = typename _MontgomeryTag<_ModType>::long_type; _ModType m_P; _ModType m_Pinv; _ModType m_Ninv; Barrett<_ModType> m_brt; constexpr Montgomery() = default; constexpr explicit Montgomery(_ModType __P) : m_P(__P), m_Pinv(__P), m_Ninv(-_LongType(__P) % __P), m_brt(__P) { for (int i = 0; i < _MontgomeryTag<_ModType>::inv_loop; i++) m_Pinv *= _ModType(2) - __P * m_Pinv; } constexpr _ModType mod() const { return m_brt.mod(); } constexpr _ModType mod(uint64_t __a) const { return m_brt.mod(__a); } constexpr _FastType init(uint64_t __a) const { return reduce(_LongType(mod(__a)) * m_Ninv); } constexpr _FastType raw_init(uint64_t __a) const { return reduce(_LongType(__a) * m_Ninv); } constexpr _FastType reduce(_LongType __a) const { _FastType res = (__a >> _MontgomeryTag<_ModType>::length) - _ModType(_LongType(_ModType(__a) * m_Pinv) * m_P >> _MontgomeryTag<_ModType>::length); if (res >= mod()) res += mod(); return res; } constexpr _ModType reduce(_FastType __a) const { _ModType res = -_ModType(_LongType(__a * m_Pinv) * m_P >> _MontgomeryTag<_ModType>::length); if (res >= mod()) res += mod(); return res; } constexpr _FastType plus(_FastType __a, _FastType __b) const { if (__a += __b; __a >= m_P) __a -= m_P; return __a; } constexpr _FastType minus(_FastType __a, _FastType __b) const { if (__a += m_P - __b; __a >= m_P) __a -= m_P; return __a; } constexpr _FastType multiply(_FastType __a, _FastType __b) const { return reduce(_LongType(__a) * __b); } constexpr _FastType pow(_FastType __a, uint64_t __n) const { _FastType res = reduce(_LongType(1) * m_Ninv); while (__n) { if (__n & 1) res = multiply(res, __a); __a = multiply(__a, __a); __n >>= 1; } return res; } template <typename _Tp> constexpr _Tp divide(_Tp __a) const { return m_brt.divide(__a); } template <typename _Tp> constexpr std::pair<_Tp, _Tp> divmod(_Tp __a) const { return m_brt.divmod(__a); } }; using Montgomery32 = Montgomery<uint32_t>; using Montgomery64 = Montgomery<uint64_t>; } namespace OY { #pragma pack(4) template <uint32_t _B = 10, uint32_t _W = 6, uint32_t _MAXN = 1 << 20, uint64_t _P = 9223372036737335297, uint64_t _R = 3> struct BigInt { using bint = BigInt<_B, _W, _MAXN, _P, _R>; static constexpr struct _Bases { uint64_t val[_W * 2 + 1]; constexpr _Bases() : val{} { for (uint32_t i = 0; i <= _W * 2; i++) val[i] = i ? val[i - 1] * _B : 1; } } bases{}; static constexpr uint32_t _N = bases.val[_W]; static inline bint s_divThresh = bint(__int128_t(LLONG_MAX) / _N - 1); static inline Montgomery64 s_mg = Montgomery64(_P); static inline uint64_t s_roots[std::__bit_ceil(_MAXN / _W) << 1], s_dftBuffer[std::__bit_ceil(_MAXN / _W) << 2], s_rootSize = 1; int *m_data; uint32_t m_length; bool m_negative; BigInt() : m_length(0), m_negative(false) {} template <typename _Tp, std::enable_if_t<std::is_integral_v<_Tp>, bool> = true> explicit BigInt(_Tp __number) : BigInt(fromString(std::to_string(__number).data())) {} explicit BigInt(__int128_t __number) : m_length(0) { static char s_buffer[40], *s_cursor; for (s_cursor = s_buffer; __number; __number /= 10) *s_cursor++ = '0' + __number % 10; std::reverse(s_buffer, s_cursor); *this = fromString(s_buffer, s_cursor - s_buffer); } BigInt(const char *__number) : BigInt(fromString(__number)) {} BigInt(const std::string &__number) : BigInt(fromString(__number.data(), __number.size())) {} BigInt(bint &&__other) : m_data(__other.m_data), m_length(__other.m_length), m_negative(__other.m_negative) { __other.m_length = 0; } BigInt(const bint &__other) : m_length(__other.m_length), m_negative(__other.m_negative) { if (m_length) std::copy_n(__other.m_data, m_length, m_data = malloc(m_length)); } ~BigInt() { if (m_length) free(m_data); } static bint fromString(const char *__number) { return fromString(__number, std::strlen(__number)); } static bint fromString(const char *__number, uint32_t __length) { uint32_t cursor = std::find_if((__number[0] == '+' || __number[0] == '-') ? __number + 1 : __number, __number + __length, [](char c) { return c != '0'; }) - __number; if (cursor == __length) return zero(); auto [quot, rem] = std::div(int(__length - cursor), int(_W)); bint res(empty(quot + (rem > 0), __number[0] == '-')); uint32_t i = res.m_length - 1; if (rem) { uint32_t digit = 0; for (uint32_t j = rem; j--;) digit = digit * _B + (__number[cursor++] - '0'); res.m_data[i--] = digit; } while (cursor < __length) { uint32_t digit = 0; for (uint32_t j = _W; j--;) digit = digit * _B + (__number[cursor++] - '0'); res.m_data[i--] = digit; } return res; } static bint zero() { return empty(0, false); } static bint small(int __singleDigit) { bint res = empty(1, __singleDigit < 0); res.m_data[0] = std::abs(__singleDigit); return res; } static bint rand(uint32_t __length) { if (!__length) return zero(); static std::mt19937 s_rander; auto [quot, rem] = std::div(int(__length), int(_W)); if (!rem) quot--, rem += _W; bint res(empty(quot + 1, false)); for (uint32_t i = 0; i + 1 < res.m_length; i++) res.m_data[i] = s_rander() % _N; res.m_data[res.m_length - 1] = s_rander() % (bases.val[rem] - bases.val[rem - 1]) + bases.val[rem - 1]; return res; } static bint empty(uint32_t __length, bool __negative) { bint res; if (__length) res.m_data = malloc(__length); res.m_length = __length; res.setSign(__negative); return res; } static int absCompare(const bint &__a, const bint &__b) { if (__a.m_length != __b.m_length) return __a.m_length > __b.m_length ? 1 : -1; for (uint32_t i = __a.m_length - 1; ~i; i--) if (__a.m_data[i] != __b.m_data[i]) return __a.m_data[i] > __b.m_data[i] ? 1 : -1; return 0; } static bool absClose(const bint &__a, const bint &__b) { if (__a.m_length == __b.m_length) { uint32_t i = __a.m_length - 1; while (~i && __a.m_data[i] == __b.m_data[i]) i--; if (!~i) return true; if (__a.m_data[i] == __b.m_data[i] + 1) while (~--i && !__a.m_data[i] && __b.m_data[i] == _N - 1) {} else if (__b.m_data[i] == __a.m_data[i] + 1) while (~--i && __a.m_data[i] == _N - 1 && !__b.m_data[i]) {} else return false; return !~i; } else if (__a.m_length == __b.m_length + 1) { if (__a.m_data[__a.m_length - 1] != 1) return false; for (uint32_t i = 0; i < __b.m_length; i++) if (__a.m_data[i] || __b.m_data[i] != _N - 1) return false; } else if (__b.m_length == __a.m_length + 1) { if (__b.m_data[__b.m_length - 1] != 1) return false; for (uint32_t i = 0; i < __a.m_length; i++) if (__a.m_data[i] != _N - 1 || !__a.m_data[i]) return false; } else return false; return true; } static int *malloc(uint32_t __length) { return new int[__length]; } static void free(int *__data) { delete[] __data; } static void prepareRoots(uint32_t __length) { if (s_rootSize == 1) s_roots[s_rootSize++] = s_mg.raw_init(1); while (s_rootSize < __length) { const uint64_t wn = s_mg.pow(s_mg.raw_init(_R), (_P - 1) / (s_rootSize * 2)); for (uint32_t i = s_rootSize; i < s_rootSize * 2; i += 2) { s_roots[i] = s_roots[i / 2]; s_roots[i + 1] = s_mg.multiply(s_roots[i / 2], wn); } s_rootSize *= 2; } } static void dft(uint64_t *__buffer, uint32_t __length, const bint &__a) { prepareRoots(__length); for (uint32_t i = 0; i < __a.m_length; i++) __buffer[i] = s_mg.raw_init(__a.m_data[i]); for (uint32_t i = __a.m_length; i < __length; i++) __buffer[i] = 0; for (uint32_t l = __length / 2; l; l /= 2) for (uint32_t i = 0; i < __length; i += l * 2) for (uint32_t j = 0; j < l; j++) { auto x = __buffer[i + j], y = __buffer[i + j + l]; __buffer[i + j] = s_mg.plus(x, y); __buffer[i + j + l] = s_mg.multiply(s_roots[j + l], s_mg.minus(x, y)); } } static void idft(uint64_t *__buffer, uint32_t __length) { for (uint32_t l = 1; l < __length; l *= 2) for (uint32_t i = 0; i < __length; i += l * 2) for (uint32_t j = 0; j < l; j++) { auto x = __buffer[i + j], y = s_mg.multiply(s_roots[j + l], __buffer[i + j + l]); __buffer[i + j] = s_mg.plus(x, y); __buffer[i + j + l] = s_mg.minus(x, y); } const uint64_t inv = s_mg.pow(s_mg.raw_init(__length), _P - 2); for (uint32_t i = 0; i < __length; i++) __buffer[i] = s_mg.multiply(__buffer[i], inv); std::reverse(__buffer + 1, __buffer + __length); } template <int _Val, bool _Sign> static bint &inc_dec(bint &__a) { if (!__a.m_length) return __a = small(_Val); if (__a.m_negative == _Sign) { uint32_t i = 0; while (i < __a.m_length && ++(__a.m_data[i]) == _N) __a.m_data[i++] = 0; if (i < __a.m_length) return __a; __a = empty(__a.m_length + 1, _Sign); std::fill_n(__a.m_data, __a.m_length - 1, 0); __a.m_data[__a.m_length - 1] = 1; return __a; } else { uint32_t i = 0; while (i < __a.m_length && !__a.m_data[i]--) __a.m_data[i++] = _N - 1; return __a.shrink(); } } template <typename _Compare> static bint &plus_minus_by(bint &__a, const bint &__b) { if (!__b.m_length) return __a; if (_Compare()(__a.m_negative, __b.m_negative)) { if (__b.m_length <= __a.m_length && __a.m_data[__b.m_length - 1] + __b.m_data[__b.m_length - 1] < _N) { for (uint32_t i = 0, carry = 0; i < __b.m_length; i++) if (__a.m_data[i] += __b.m_data[i] + carry; (carry = __a.m_data[i] >= _N)) __a.m_data[i] -= _N; return __a; } bint res(empty(std::max(__a.m_length, __b.m_length) + 1, __a.m_negative)); for (uint32_t i = 0, carry = 0; i < res.m_length; i++) if (res.m_data[i] = (i < __a.m_length ? __a.m_data[i] : 0) + (i < __b.m_length ? __b.m_data[i] : 0) + carry; (carry = res.m_data[i] >= _N)) res.m_data[i] -= _N; return (__a = res).shrink(); } else { if (int comp = absCompare(__a, __b); comp > 0) { for (uint32_t i = 0, borrow = 0; i < __a.m_length; i++) if (__a.m_data[i] -= (i < __b.m_length ? __b.m_data[i] : 0) + borrow; (borrow = __a.m_data[i] < 0)) __a.m_data[i] += _N; return __a.shrink(); } else if (comp < 0) { bint res(empty(__b.m_length, __b.m_negative)); for (uint32_t i = 0, borrow = 0; i < res.m_length; i++) if (res.m_data[i] = __b.m_data[i] - (i < __a.m_length ? __a.m_data[i] : 0) - borrow; (borrow = res.m_data[i] < 0)) res.m_data[i] += _N; return (__a = res).shrink(); } else return __a = zero(); } } template <typename _Compare, typename _Sign> static bint plus_minus(const bint &__a, const bint &__b, _Sign __sign) { if (!__a.m_length) return __sign(__b); if (!__b.m_length) return __a; if (_Compare()(__a.m_negative, __b.m_negative)) { bint res(empty(std::max(__a.m_length, __b.m_length) + 1, __a.m_negative)); for (uint32_t i = 0, carry = 0; i < res.m_length; i++) if (res.m_data[i] = (i < __a.m_length ? __a.m_data[i] : 0) + (i < __b.m_length ? __b.m_data[i] : 0) + carry; (carry = res.m_data[i] >= _N)) res.m_data[i] -= _N; res.shrink(); return res; } else if (int comp = absCompare(__a, __b); comp > 0) { bint res(empty(__a.m_length, __a.m_negative)); for (uint32_t i = 0, borrow = 0; i < res.m_length; i++) if (res.m_data[i] = __a.m_data[i] - (i < __b.m_length ? __b.m_data[i] : 0) - borrow; (borrow = res.m_data[i] < 0)) res.m_data[i] += _N; res.shrink(); return res; } else if (comp < 0) { bint res(empty(__b.m_length, __b.m_negative)); for (uint32_t i = 0, borrow = 0; i < res.m_length; i++) if (res.m_data[i] = __b.m_data[i] - (i < __a.m_length ? __a.m_data[i] : 0) - borrow; (borrow = res.m_data[i] < 0)) res.m_data[i] += _N; res.shrink(); return res; } else return zero(); } template <bool _Mod, typename _Result = std::conditional_t<_Mod, std::pair<bint, bint>, bint>> static _Result div_mod(const bint &__a, const bint &__b) { if (int comp = absCompare(__a, __b); comp <= 0) { if constexpr (_Mod) return comp < 0 ? std::make_pair(zero(), __a) : std::make_pair(small(__a.m_negative == __b.m_negative ? 1 : -1), zero()); else return comp < 0 ? zero() : small(__a.m_negative == __b.m_negative ? 1 : -1); } uint32_t shift = __a.m_length > __b.m_length * 2 ? __a.m_length - __b.m_length * 2 : 0, n = __a.m_length + shift, m = __b.m_length + shift; bint a(__a << shift * _W), b(__b << shift * _W), c(0); bint bi(b.setSign(false).inv()), prod(b * bi), res(0); if (prod.m_length >= m * 2) prod -= b, --bi; for (a.setSign(false); b <= a && (c = a * bi >> (m * 2 * _W)); a -= b * c, res += c) {} while (b <= a) a -= b, ++res; res.setSign(__a.m_negative != __b.m_negative), a.setSign(__a.m_negative); if constexpr (_Mod) return {res, shift ? a >> shift * _W : a}; else return res; } static std::pair<bint, long long> div_mod(const bint &__a, long long __b) { if (!__a.m_length) return {zero(), 0}; bint res(empty(__a.m_length, __b < 0 ? !__a.m_negative : __a.m_negative)); long long carry = 0; for (uint32_t i = __a.m_length - 1; ~i; i--) { auto [q, r] = std::div(__a.m_data[i] + carry * _N, __b); res.m_data[i] = q, carry = r; } res.shrink(); return {res, __b < 0 ? -carry : carry}; } static bint self_multiply(const bint &__a) { if (!__a.m_length) return zero(); uint32_t length = std::__bit_ceil(__a.m_length * 2 - 1); dft(s_dftBuffer, length, __a); std::transform(s_dftBuffer, s_dftBuffer + length, s_dftBuffer, [](uint64_t x) { return s_mg.multiply(x, x); }); idft(s_dftBuffer, length); bint res(empty(__a.m_length * 2, false)); long long carry = 0; for (uint32_t i = 0; i + 1 < res.m_length; i++) { auto [quot, rem] = std::div((long long)(s_mg.reduce(s_dftBuffer[i]) + carry), (long long)_N); carry = quot, res.m_data[i] = rem; } res.m_data[res.m_length - 1] = carry; res.shrink(); return res; } static bint &inplace_multiply(bint &__a, long long __b) { uint64_t carry = 0, i = 0; while (i < __a.m_length) { auto [quot, rem] = std::div((long long)(__a.m_data[i] * __b + carry), (long long)_N); __a.m_data[i++] = rem; carry = quot; } return __a; } static bint multiply(const bint &__a, long long __b) { uint64_t carry = 0, i = 0; while (i < __a.m_length) { auto [quot, rem] = std::div((long long)(__a.m_data[i] * __b + carry), (long long)_N); s_dftBuffer[i++] = rem; carry = quot; } while (carry) { auto [quot, rem] = std::div((long long)carry, (long long)_N); s_dftBuffer[i++] = rem; carry = quot; } bint res(empty(i, __b > 0 ? __a.m_negative : !__a.m_negative)); while (~--i) res.m_data[i] = s_dftBuffer[i]; return res; } bint &shrink() { if (!m_length) return *this; while (m_length && !m_data[m_length - 1]) m_length--; if (m_length) return *this; free(m_data); return setSign(false); } bint &opposite() { return setSign(!m_negative); } bint &setSign(bool __negative) { m_negative = m_length ? __negative : false; return *this; } bint &operator=(bint &&__other) { if (m_length) free(m_data); m_length = __other.m_length; m_data = __other.m_data; __other.m_length = 0; return setSign(__other.m_negative); } bint &operator=(const bint &__other) { if (m_length) free(m_data); if ((m_length = __other.m_length)) std::copy_n(__other.m_data, m_length, m_data = malloc(m_length)); return setSign(__other.m_negative); } bint &operator++() { return inc_dec<1, false>(*this); } bint &operator--() { return inc_dec<-1, true>(*this); } uint32_t length() const { return m_length ? (m_length - 1) * _W + (std::upper_bound(bases.val, bases.val + _W, m_data[m_length - 1]) - bases.val) : 1; } uint32_t ctz() const { if (!m_length) return 0; uint32_t i = 0, res = 0; while (i < m_length && !m_data[i]) {} for (uint32_t digit = m_data[i]; digit && digit % _B == 0; digit /= _B, res++) {} return i * _W + res; } bint inv() const { if (m_length == 1) return bint(bases.val[_W * 2] / m_data[0]); else if (m_length == 2) return bint(__int128_t(bases.val[_W * 2]) * bases.val[_W * 2] / (__int128_t(m_data[1]) * _N + m_data[0])); else { bint res((*this >> (m_length - 1) / 2 * _W).inv()); return ((res + res) << (m_length - 1) / 2 * _W) - ((*this * (res * res)) >> (m_length / 2 + 1) * 2 * _W); } } bint operator++(int) { bint old(*this); ++*this; return old; } bint operator--(int) { bint old(*this); --*this; return old; } bint &operator+=(const bint &__other) { return plus_minus_by<std::equal_to<bool>>(*this, __other); } bint &operator-=(const bint &__other) { return plus_minus_by<std::not_equal_to<bool>>(*this, __other); } bint &operator*=(const bint &__other) { return __other <= s_divThresh ? *this *= (long long)__other : (*this = *this * __other); } bint &operator*=(long long __other) { if (!m_length) return *this; if (!__other) return *this = zero(); return (m_data[m_length - 1] + 1) * __other < _N ? inplace_multiply(*this, __other) : *this = multiply(*this, __other); } bint &operator/=(const bint &__other) { return __other <= s_divThresh ? *this /= (long long)__other : *this = div_mod<false>(*this, __other); } bint &operator/=(long long __other) { if (!m_length) return *this; long long carry = 0; for (uint32_t i = m_length - 1; ~i; i--) { auto [q, r] = std::div(m_data[i] + carry * _N, __other); m_data[i] = q, carry = r; } if (__other < 0) opposite(); return shrink(); } bint &operator%=(const bint &__other) { return __other <= s_divThresh ? *this = bint(div_mod(*this, (long long)(__other)).second) : div_mod<true>(*this, __other).second; } bint &operator%=(long long __other) { return *this = bint(divmod(*this, __other).second); } bint &operator<<=(uint32_t __shift) { return *this = *this << __shift; } bint &operator>>=(uint32_t __shift) { auto [quot, rem] = std::div((int)__shift, (int)_W); if (quot >= m_length || (quot == m_length - 1 && m_data[m_length - 1] < bases.val[rem])) return *this = zero(); std::copy_n(m_data + quot, m_length -= quot, m_data); if (!rem) return *this; uint64_t carry = 0; for (uint32_t i = m_length - 1; ~i; i--) { auto [q, r] = std::div(m_data[i], int(bases.val[rem])); m_data[i] = carry * bases.val[_W - rem] + q; carry = r; } return shrink(); } bint operator+() const { return *this; } bint operator-() const { bint res(*this); res.opposite(); return res; } bool operator==(const bint &__other) const { return m_negative == __other.m_negative && !absCompare(*this, __other); } bool operator!=(const bint &__other) const { return m_negative != __other.m_negative && absCompare(*this, __other); } bool operator<(const bint &__other) const { return m_negative == __other.m_negative ? (m_negative ? absCompare(*this, __other) > 0 : absCompare(*this, __other) < 0) : m_negative; } bool operator>(const bint &__other) const { return m_negative == __other.m_negative ? (m_negative ? absCompare(*this, __other) < 0 : absCompare(*this, __other) > 0) : !m_negative; } bool operator<=(const bint &__other) const { return m_negative == __other.m_negative ? (m_negative ? absCompare(*this, __other) >= 0 : absCompare(*this, __other) <= 0) : m_negative; } bool operator>=(const bint &__other) const { return m_negative == __other.m_negative ? (m_negative ? absCompare(*this, __other) <= 0 : absCompare(*this, __other) >= 0) : !m_negative; } explicit operator bool() const { return m_length; } template <typename _Tp> explicit operator _Tp() const { _Tp res = 0; for (uint32_t i = m_length - 1; ~i; i--) res = res * _N + m_data[i]; return m_negative ? -res : res; } operator std::string() const { if (!m_length) return "0"; std::string res(m_length * _W, '0'); for (uint32_t i = 0; i < m_length; i++) for (uint32_t j = i * _W, digit = m_data[i]; digit; j++, digit /= _B) res[j] = '0' + digit % _B; while (res.size() && res.back() == '0') res.pop_back(); if (m_negative) res.push_back('-'); std::reverse(res.begin(), res.end()); return res; } friend bint operator+(const bint &__a, const bint &__b) { return plus_minus<std::equal_to<bool>>(__a, __b, [](const bint &x) { return x; }); } friend bint operator-(const bint &__a, const bint &__b) { return plus_minus<std::not_equal_to<bool>>(__a, __b, std::negate<bint>()); } friend bint operator*(const bint &__a, const bint &__b) { if (&__a == &__b) return self_multiply(__a); if (!__a.m_length || !__b.m_length) return zero(); if (__a <= s_divThresh) return __b * (long long)__a; if (__b <= s_divThresh) return __a * (long long)__b; uint32_t length = std::__bit_ceil(__a.m_length + __b.m_length - 1); dft(s_dftBuffer, length, __a); dft(s_dftBuffer + length, length, __b); for (uint32_t i = 0; i < length; i++) s_dftBuffer[i] = s_mg.multiply(s_dftBuffer[i], s_dftBuffer[i + length]); idft(s_dftBuffer, length); bint res(empty(__a.m_length + __b.m_length, __a.m_negative != __b.m_negative)); long long carry = 0; for (uint32_t i = 0; i + 1 < res.m_length; i++) { auto [quot, rem] = std::div((long long)(s_mg.reduce(s_dftBuffer[i]) + carry), (long long)_N); carry = quot, res.m_data[i] = rem; } res.m_data[res.m_length - 1] = carry; res.shrink(); return res; } friend bint operator*(const bint &__a, long long __b) { if (!__a.m_length || !__b) return zero(); if ((__a.m_data[__a.m_length - 1] + 1) * __b < _N) { bint res(__a); inplace_multiply(res, __b); return res; } else return multiply(__a, __b); } friend bint operator/(const bint &__a, const bint &__b) { return __b <= s_divThresh ? div_mod(__a, (long long)(__b)).first : div_mod<false>(__a, __b); } friend bint operator/(const bint &__a, long long __b) { return div_mod(__a, __b).first; } friend bint operator%(const bint &__a, const bint &__b) { return __b <= s_divThresh ? bint(div_mod(__a, (long long)(__b)).second) : div_mod<true>(__a, __b).second; } friend long long operator%(const bint &__a, long long __b) { return divmod(__a, __b).second; } friend bint operator<<(const bint &__a, uint32_t __shift) { auto [quot, rem] = std::div((int)__shift, (int)_W); bint res(empty(__a.m_length + quot + (rem > 0), __a.m_negative)); std::copy_n(__a.m_data, __a.m_length, std::fill_n(res.m_data, quot, 0)); if (!rem) return res; uint64_t carry = 0; for (uint32_t i = quot; i + 1 < res.m_length; i++) { auto [q, r] = std::div((long long)(res.m_data[i]) * bases.val[rem] + carry, (long long)_N); carry = q, res.m_data[i] = r; } res.m_data[res.m_length - 1] = carry; res.shrink(); return res; } friend bint operator>>(const bint &__a, uint32_t __shift) { auto [quot, rem] = std::div((int)__shift, (int)_W); if (quot >= __a.m_length || (quot == __a.m_length - 1 && __a.m_data[__a.m_length - 1] < bases.val[rem])) return zero(); bint res(empty(__a.m_length - quot, __a.m_negative)); std::copy_n(__a.m_data + quot, __a.m_length - quot, res.m_data); if (!rem) return res; uint64_t carry = 0; for (uint32_t i = res.m_length - 1; ~i; i--) { auto [q, r] = std::div(res.m_data[i], int(bases.val[rem])); res.m_data[i] = carry * bases.val[_W - rem] + q, carry = r; } res.shrink(); return res; } template <typename _Istream> friend _Istream &operator>>(_Istream &is, bint &self) { std::string number; is >> number; self = fromString(number.data(), number.size()); return is; } template <typename _Ostream> friend _Ostream &operator<<(_Ostream &os, const bint &self) { return os << std::string(self); } }; #pragma pack() } namespace OY { template <typename _ModType, _ModType _P> struct Modular { static constexpr _ModType mod() { return _P; } static constexpr _ModType mod(uint64_t __a) { return __a % _P; } static constexpr _ModType plus(_ModType __a, _ModType __b) { if (__a += __b; __a >= _P) __a -= _P; return __a; } static constexpr _ModType minus(_ModType __a, _ModType __b) { if (__a += _P - __b; __a >= _P) __a -= _P; return __a; } static constexpr _ModType multiply(uint64_t __a, uint64_t __b) { if constexpr (std::is_same_v<_ModType, uint64_t>) return multiply_ld(__a, __b); else return multiply_64(__a, __b); } static constexpr _ModType multiply_64(uint64_t __a, uint64_t __b) { // assert(__a * __b < 1ull << 64); return mod(__a * __b); } static constexpr _ModType multiply_128(uint64_t __a, uint64_t __b) { return __uint128_t(__a) * __b % _P; } static constexpr _ModType multiply_ld(uint64_t __a, uint64_t __b) { // assert(m_P < 1ull << 63 && __a < m_P && __b < m_P); if (std::__countl_zero(__a) + std::__countl_zero(__b) >= 64) return multiply_64(__a, __b); int64_t res = __a * __b - uint64_t(1.L / _P * __a * __b) * _P; if (res < 0) res += _P; else if (res >= _P) res -= _P; return res; } static constexpr _ModType pow(uint64_t __a, uint64_t __n) { if constexpr (std::is_same_v<_ModType, uint64_t>) return pow_ld(__a, __n); else return pow_64(__a, __n); } static constexpr _ModType pow_64(uint64_t __a, uint64_t __n) { // assert(m_P < 1ull << 32); _ModType res = 1, b = mod(__a); while (__n) { if (__n & 1) res = multiply_64(res, b); b = multiply_64(b, b); __n >>= 1; } return res; } static constexpr _ModType pow_128(uint64_t __a, uint64_t __n) { _ModType res = 1, b = mod(__a); while (__n) { if (__n & 1) res = multiply_128(res, b); b = multiply_128(b, b); __n >>= 1; } return res; } static constexpr _ModType pow_ld(uint64_t __a, uint64_t __n) { _ModType res = 1, b = mod(__a); while (__n) { if (__n & 1) res = multiply_ld(res, b); b = multiply_ld(b, b); __n >>= 1; } return res; } }; template <uint32_t _P> using Modular32 = Modular<uint32_t, _P>; template <uint64_t _P> using Modular64 = Modular<uint64_t, _P>; } using bint = OY::BigInt<10, 6, 1 << 20>; const int N=105; int n,i,j,d,x,deg[N],v[N][N],vis[N]; bint f[N],g[N],ans; bint gcd(bint a,bint b){return b==bint::zero()?a:gcd(b,a%b);} int main(){ cin>>n; for(i=1;i<=n;i++){ cin>>deg[i]; for(j=0;j<deg[i];j++)cin>>v[i][j]; } vis[1]=1; f[1]=bint::small(1); g[1]=bint::small(1); ans=bint::small(1); for(i=1;i<=n;i++)if(vis[i]){ //printf("i=%d f=%lld g=%lld\n",i,f[i],g[i]); d=deg[i]; if(f[i]>ans)ans=f[i]; for(j=0;j<d;j++){ x=v[i][j]; bint tmp=gcd(g[i],bint::small(d)); bint F=f[i]*d/tmp; bint G=g[i]/tmp; //printf("%d->%d f=%lld g=%lld\n",i,x,F,G); if(!vis[x]){ vis[x]=1; f[x]=F; g[x]=G; }else{ tmp=gcd(f[x],F); g[x]=(g[x]*F+G*f[x])/tmp; f[x]=f[x]*F/tmp; } } } cout<<ans; }
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 | #include<bits/stdc++.h> using std::cin,std::cout,std::endl;int _IO=[]{std::ios::sync_with_stdio(0);cin.tie(0); cout.tie(0); return 0;}(); namespace OY { template <typename _ModType> struct Barrett { _ModType m_P; __uint128_t m_Pinv; constexpr Barrett() = default; constexpr explicit Barrett(_ModType __P) : m_P(__P), m_Pinv(-uint64_t(__P) / __P + 1) {} constexpr _ModType mod() const { return m_P; } constexpr _ModType mod(uint64_t __a) const { __a -= uint64_t(m_Pinv * __a >> 64) * m_P + m_P; if (__a >= m_P) __a += m_P; return __a; } constexpr _ModType plus(_ModType __a, _ModType __b) { if (__a += __b; __a >= m_P) __a -= m_P; return __a; } constexpr _ModType minus(_ModType __a, _ModType __b) { if (__a += m_P - __b; __a >= m_P) __a -= m_P; return __a; } constexpr _ModType multiply(uint64_t __a, uint64_t __b) const { if constexpr (std::is_same_v<_ModType, uint64_t>) return multiply_ld(__a, __b); else return multiply_64(__a, __b); } constexpr _ModType multiply_64(uint64_t __a, uint64_t __b) const { // assert(__a * __b < 1ull << 64); return mod(__a * __b); } constexpr _ModType multiply_128(uint64_t __a, uint64_t __b) const { if (std::__countl_zero(__a) + std::__countl_zero(__b) >= 64) return multiply_64(__a, __b); return __uint128_t(__a) * __b % m_P; } constexpr _ModType multiply_ld(uint64_t __a, uint64_t __b) const { // assert(m_P < 1ull << 63 && __a < m_P && __b < m_P); if (std::__countl_zero(__a) + std::__countl_zero(__b) >= 64) return multiply_64(__a, __b); int64_t res = __a * __b - uint64_t(1.L / m_P * __a * __b) * m_P; if (res < 0) res += m_P; else if (res >= m_P) res -= m_P; return res; } constexpr _ModType pow(uint64_t __a, uint64_t __n) const { if constexpr (std::is_same_v<_ModType, uint64_t>) return pow_ld(__a, __n); else return pow_64(__a, __n); } constexpr _ModType pow_64(uint64_t __a, uint64_t __n) const { // assert(m_P < 1ull << 32); _ModType res = 1, b = mod(__a); while (__n) { if (__n & 1) res = multiply_64(res, b); b = multiply_64(b, b); __n >>= 1; } return res; } constexpr _ModType pow_128(uint64_t __a, uint64_t __n) const { _ModType res = 1, b = mod(__a); while (__n) { if (__n & 1) res = multiply_128(res, b); b = multiply_128(b, b); __n >>= 1; } return res; } constexpr _ModType pow_ld(uint64_t __a, uint64_t __n) const { _ModType res = 1, b = mod(__a); while (__n) { if (__n & 1) res = multiply_ld(res, b); b = multiply_ld(b, b); __n >>= 1; } return res; } template <typename _Tp> constexpr _Tp divide(_Tp __a) const { if (__a < m_P) return 0; _Tp res = m_Pinv * __a >> 64; if (__a - res * m_P >= m_P) res++; return res; } template <typename _Tp> constexpr std::pair<_Tp, _Tp> divmod(_Tp __a) const { _Tp quo = (__a * m_Pinv) >> 64, rem = __a - quo * m_P; if (rem >= m_P) { quo++; rem -= m_P; } return {quo, rem}; } }; using Barrett32 = Barrett<uint32_t>; using Barrett64 = Barrett<uint64_t>; } namespace OY { template <typename _ModType> struct _MontgomeryTag; template <> struct _MontgomeryTag<uint32_t> { using long_type = uint64_t; static constexpr uint32_t limit = (1u << 30) - 1; static constexpr uint32_t inv_loop = 4; static constexpr uint32_t length = 32; }; template <> struct _MontgomeryTag<uint64_t> { using long_type = __uint128_t; static constexpr uint64_t limit = (1ull << 63) - 1; static constexpr uint32_t inv_loop = 5; static constexpr uint32_t length = 64; }; template <typename _ModType> struct Montgomery { using _FastType = _ModType; using _LongType = typename _MontgomeryTag<_ModType>::long_type; _ModType m_P; _ModType m_Pinv; _ModType m_Ninv; Barrett<_ModType> m_brt; constexpr Montgomery() = default; constexpr explicit Montgomery(_ModType __P) : m_P(__P), m_Pinv(__P), m_Ninv(-_LongType(__P) % __P), m_brt(__P) { for (int i = 0; i < _MontgomeryTag<_ModType>::inv_loop; i++) m_Pinv *= _ModType(2) - __P * m_Pinv; } constexpr _ModType mod() const { return m_brt.mod(); } constexpr _ModType mod(uint64_t __a) const { return m_brt.mod(__a); } constexpr _FastType init(uint64_t __a) const { return reduce(_LongType(mod(__a)) * m_Ninv); } constexpr _FastType raw_init(uint64_t __a) const { return reduce(_LongType(__a) * m_Ninv); } constexpr _FastType reduce(_LongType __a) const { _FastType res = (__a >> _MontgomeryTag<_ModType>::length) - _ModType(_LongType(_ModType(__a) * m_Pinv) * m_P >> _MontgomeryTag<_ModType>::length); if (res >= mod()) res += mod(); return res; } constexpr _ModType reduce(_FastType __a) const { _ModType res = -_ModType(_LongType(__a * m_Pinv) * m_P >> _MontgomeryTag<_ModType>::length); if (res >= mod()) res += mod(); return res; } constexpr _FastType plus(_FastType __a, _FastType __b) const { if (__a += __b; __a >= m_P) __a -= m_P; return __a; } constexpr _FastType minus(_FastType __a, _FastType __b) const { if (__a += m_P - __b; __a >= m_P) __a -= m_P; return __a; } constexpr _FastType multiply(_FastType __a, _FastType __b) const { return reduce(_LongType(__a) * __b); } constexpr _FastType pow(_FastType __a, uint64_t __n) const { _FastType res = reduce(_LongType(1) * m_Ninv); while (__n) { if (__n & 1) res = multiply(res, __a); __a = multiply(__a, __a); __n >>= 1; } return res; } template <typename _Tp> constexpr _Tp divide(_Tp __a) const { return m_brt.divide(__a); } template <typename _Tp> constexpr std::pair<_Tp, _Tp> divmod(_Tp __a) const { return m_brt.divmod(__a); } }; using Montgomery32 = Montgomery<uint32_t>; using Montgomery64 = Montgomery<uint64_t>; } namespace OY { #pragma pack(4) template <uint32_t _B = 10, uint32_t _W = 6, uint32_t _MAXN = 1 << 20, uint64_t _P = 9223372036737335297, uint64_t _R = 3> struct BigInt { using bint = BigInt<_B, _W, _MAXN, _P, _R>; static constexpr struct _Bases { uint64_t val[_W * 2 + 1]; constexpr _Bases() : val{} { for (uint32_t i = 0; i <= _W * 2; i++) val[i] = i ? val[i - 1] * _B : 1; } } bases{}; static constexpr uint32_t _N = bases.val[_W]; static inline bint s_divThresh = bint(__int128_t(LLONG_MAX) / _N - 1); static inline Montgomery64 s_mg = Montgomery64(_P); static inline uint64_t s_roots[std::__bit_ceil(_MAXN / _W) << 1], s_dftBuffer[std::__bit_ceil(_MAXN / _W) << 2], s_rootSize = 1; int *m_data; uint32_t m_length; bool m_negative; BigInt() : m_length(0), m_negative(false) {} template <typename _Tp, std::enable_if_t<std::is_integral_v<_Tp>, bool> = true> explicit BigInt(_Tp __number) : BigInt(fromString(std::to_string(__number).data())) {} explicit BigInt(__int128_t __number) : m_length(0) { static char s_buffer[40], *s_cursor; for (s_cursor = s_buffer; __number; __number /= 10) *s_cursor++ = '0' + __number % 10; std::reverse(s_buffer, s_cursor); *this = fromString(s_buffer, s_cursor - s_buffer); } BigInt(const char *__number) : BigInt(fromString(__number)) {} BigInt(const std::string &__number) : BigInt(fromString(__number.data(), __number.size())) {} BigInt(bint &&__other) : m_data(__other.m_data), m_length(__other.m_length), m_negative(__other.m_negative) { __other.m_length = 0; } BigInt(const bint &__other) : m_length(__other.m_length), m_negative(__other.m_negative) { if (m_length) std::copy_n(__other.m_data, m_length, m_data = malloc(m_length)); } ~BigInt() { if (m_length) free(m_data); } static bint fromString(const char *__number) { return fromString(__number, std::strlen(__number)); } static bint fromString(const char *__number, uint32_t __length) { uint32_t cursor = std::find_if((__number[0] == '+' || __number[0] == '-') ? __number + 1 : __number, __number + __length, [](char c) { return c != '0'; }) - __number; if (cursor == __length) return zero(); auto [quot, rem] = std::div(int(__length - cursor), int(_W)); bint res(empty(quot + (rem > 0), __number[0] == '-')); uint32_t i = res.m_length - 1; if (rem) { uint32_t digit = 0; for (uint32_t j = rem; j--;) digit = digit * _B + (__number[cursor++] - '0'); res.m_data[i--] = digit; } while (cursor < __length) { uint32_t digit = 0; for (uint32_t j = _W; j--;) digit = digit * _B + (__number[cursor++] - '0'); res.m_data[i--] = digit; } return res; } static bint zero() { return empty(0, false); } static bint small(int __singleDigit) { bint res = empty(1, __singleDigit < 0); res.m_data[0] = std::abs(__singleDigit); return res; } static bint rand(uint32_t __length) { if (!__length) return zero(); static std::mt19937 s_rander; auto [quot, rem] = std::div(int(__length), int(_W)); if (!rem) quot--, rem += _W; bint res(empty(quot + 1, false)); for (uint32_t i = 0; i + 1 < res.m_length; i++) res.m_data[i] = s_rander() % _N; res.m_data[res.m_length - 1] = s_rander() % (bases.val[rem] - bases.val[rem - 1]) + bases.val[rem - 1]; return res; } static bint empty(uint32_t __length, bool __negative) { bint res; if (__length) res.m_data = malloc(__length); res.m_length = __length; res.setSign(__negative); return res; } static int absCompare(const bint &__a, const bint &__b) { if (__a.m_length != __b.m_length) return __a.m_length > __b.m_length ? 1 : -1; for (uint32_t i = __a.m_length - 1; ~i; i--) if (__a.m_data[i] != __b.m_data[i]) return __a.m_data[i] > __b.m_data[i] ? 1 : -1; return 0; } static bool absClose(const bint &__a, const bint &__b) { if (__a.m_length == __b.m_length) { uint32_t i = __a.m_length - 1; while (~i && __a.m_data[i] == __b.m_data[i]) i--; if (!~i) return true; if (__a.m_data[i] == __b.m_data[i] + 1) while (~--i && !__a.m_data[i] && __b.m_data[i] == _N - 1) {} else if (__b.m_data[i] == __a.m_data[i] + 1) while (~--i && __a.m_data[i] == _N - 1 && !__b.m_data[i]) {} else return false; return !~i; } else if (__a.m_length == __b.m_length + 1) { if (__a.m_data[__a.m_length - 1] != 1) return false; for (uint32_t i = 0; i < __b.m_length; i++) if (__a.m_data[i] || __b.m_data[i] != _N - 1) return false; } else if (__b.m_length == __a.m_length + 1) { if (__b.m_data[__b.m_length - 1] != 1) return false; for (uint32_t i = 0; i < __a.m_length; i++) if (__a.m_data[i] != _N - 1 || !__a.m_data[i]) return false; } else return false; return true; } static int *malloc(uint32_t __length) { return new int[__length]; } static void free(int *__data) { delete[] __data; } static void prepareRoots(uint32_t __length) { if (s_rootSize == 1) s_roots[s_rootSize++] = s_mg.raw_init(1); while (s_rootSize < __length) { const uint64_t wn = s_mg.pow(s_mg.raw_init(_R), (_P - 1) / (s_rootSize * 2)); for (uint32_t i = s_rootSize; i < s_rootSize * 2; i += 2) { s_roots[i] = s_roots[i / 2]; s_roots[i + 1] = s_mg.multiply(s_roots[i / 2], wn); } s_rootSize *= 2; } } static void dft(uint64_t *__buffer, uint32_t __length, const bint &__a) { prepareRoots(__length); for (uint32_t i = 0; i < __a.m_length; i++) __buffer[i] = s_mg.raw_init(__a.m_data[i]); for (uint32_t i = __a.m_length; i < __length; i++) __buffer[i] = 0; for (uint32_t l = __length / 2; l; l /= 2) for (uint32_t i = 0; i < __length; i += l * 2) for (uint32_t j = 0; j < l; j++) { auto x = __buffer[i + j], y = __buffer[i + j + l]; __buffer[i + j] = s_mg.plus(x, y); __buffer[i + j + l] = s_mg.multiply(s_roots[j + l], s_mg.minus(x, y)); } } static void idft(uint64_t *__buffer, uint32_t __length) { for (uint32_t l = 1; l < __length; l *= 2) for (uint32_t i = 0; i < __length; i += l * 2) for (uint32_t j = 0; j < l; j++) { auto x = __buffer[i + j], y = s_mg.multiply(s_roots[j + l], __buffer[i + j + l]); __buffer[i + j] = s_mg.plus(x, y); __buffer[i + j + l] = s_mg.minus(x, y); } const uint64_t inv = s_mg.pow(s_mg.raw_init(__length), _P - 2); for (uint32_t i = 0; i < __length; i++) __buffer[i] = s_mg.multiply(__buffer[i], inv); std::reverse(__buffer + 1, __buffer + __length); } template <int _Val, bool _Sign> static bint &inc_dec(bint &__a) { if (!__a.m_length) return __a = small(_Val); if (__a.m_negative == _Sign) { uint32_t i = 0; while (i < __a.m_length && ++(__a.m_data[i]) == _N) __a.m_data[i++] = 0; if (i < __a.m_length) return __a; __a = empty(__a.m_length + 1, _Sign); std::fill_n(__a.m_data, __a.m_length - 1, 0); __a.m_data[__a.m_length - 1] = 1; return __a; } else { uint32_t i = 0; while (i < __a.m_length && !__a.m_data[i]--) __a.m_data[i++] = _N - 1; return __a.shrink(); } } template <typename _Compare> static bint &plus_minus_by(bint &__a, const bint &__b) { if (!__b.m_length) return __a; if (_Compare()(__a.m_negative, __b.m_negative)) { if (__b.m_length <= __a.m_length && __a.m_data[__b.m_length - 1] + __b.m_data[__b.m_length - 1] < _N) { for (uint32_t i = 0, carry = 0; i < __b.m_length; i++) if (__a.m_data[i] += __b.m_data[i] + carry; (carry = __a.m_data[i] >= _N)) __a.m_data[i] -= _N; return __a; } bint res(empty(std::max(__a.m_length, __b.m_length) + 1, __a.m_negative)); for (uint32_t i = 0, carry = 0; i < res.m_length; i++) if (res.m_data[i] = (i < __a.m_length ? __a.m_data[i] : 0) + (i < __b.m_length ? __b.m_data[i] : 0) + carry; (carry = res.m_data[i] >= _N)) res.m_data[i] -= _N; return (__a = res).shrink(); } else { if (int comp = absCompare(__a, __b); comp > 0) { for (uint32_t i = 0, borrow = 0; i < __a.m_length; i++) if (__a.m_data[i] -= (i < __b.m_length ? __b.m_data[i] : 0) + borrow; (borrow = __a.m_data[i] < 0)) __a.m_data[i] += _N; return __a.shrink(); } else if (comp < 0) { bint res(empty(__b.m_length, __b.m_negative)); for (uint32_t i = 0, borrow = 0; i < res.m_length; i++) if (res.m_data[i] = __b.m_data[i] - (i < __a.m_length ? __a.m_data[i] : 0) - borrow; (borrow = res.m_data[i] < 0)) res.m_data[i] += _N; return (__a = res).shrink(); } else return __a = zero(); } } template <typename _Compare, typename _Sign> static bint plus_minus(const bint &__a, const bint &__b, _Sign __sign) { if (!__a.m_length) return __sign(__b); if (!__b.m_length) return __a; if (_Compare()(__a.m_negative, __b.m_negative)) { bint res(empty(std::max(__a.m_length, __b.m_length) + 1, __a.m_negative)); for (uint32_t i = 0, carry = 0; i < res.m_length; i++) if (res.m_data[i] = (i < __a.m_length ? __a.m_data[i] : 0) + (i < __b.m_length ? __b.m_data[i] : 0) + carry; (carry = res.m_data[i] >= _N)) res.m_data[i] -= _N; res.shrink(); return res; } else if (int comp = absCompare(__a, __b); comp > 0) { bint res(empty(__a.m_length, __a.m_negative)); for (uint32_t i = 0, borrow = 0; i < res.m_length; i++) if (res.m_data[i] = __a.m_data[i] - (i < __b.m_length ? __b.m_data[i] : 0) - borrow; (borrow = res.m_data[i] < 0)) res.m_data[i] += _N; res.shrink(); return res; } else if (comp < 0) { bint res(empty(__b.m_length, __b.m_negative)); for (uint32_t i = 0, borrow = 0; i < res.m_length; i++) if (res.m_data[i] = __b.m_data[i] - (i < __a.m_length ? __a.m_data[i] : 0) - borrow; (borrow = res.m_data[i] < 0)) res.m_data[i] += _N; res.shrink(); return res; } else return zero(); } template <bool _Mod, typename _Result = std::conditional_t<_Mod, std::pair<bint, bint>, bint>> static _Result div_mod(const bint &__a, const bint &__b) { if (int comp = absCompare(__a, __b); comp <= 0) { if constexpr (_Mod) return comp < 0 ? std::make_pair(zero(), __a) : std::make_pair(small(__a.m_negative == __b.m_negative ? 1 : -1), zero()); else return comp < 0 ? zero() : small(__a.m_negative == __b.m_negative ? 1 : -1); } uint32_t shift = __a.m_length > __b.m_length * 2 ? __a.m_length - __b.m_length * 2 : 0, n = __a.m_length + shift, m = __b.m_length + shift; bint a(__a << shift * _W), b(__b << shift * _W), c(0); bint bi(b.setSign(false).inv()), prod(b * bi), res(0); if (prod.m_length >= m * 2) prod -= b, --bi; for (a.setSign(false); b <= a && (c = a * bi >> (m * 2 * _W)); a -= b * c, res += c) {} while (b <= a) a -= b, ++res; res.setSign(__a.m_negative != __b.m_negative), a.setSign(__a.m_negative); if constexpr (_Mod) return {res, shift ? a >> shift * _W : a}; else return res; } static std::pair<bint, long long> div_mod(const bint &__a, long long __b) { if (!__a.m_length) return {zero(), 0}; bint res(empty(__a.m_length, __b < 0 ? !__a.m_negative : __a.m_negative)); long long carry = 0; for (uint32_t i = __a.m_length - 1; ~i; i--) { auto [q, r] = std::div(__a.m_data[i] + carry * _N, __b); res.m_data[i] = q, carry = r; } res.shrink(); return {res, __b < 0 ? -carry : carry}; } static bint self_multiply(const bint &__a) { if (!__a.m_length) return zero(); uint32_t length = std::__bit_ceil(__a.m_length * 2 - 1); dft(s_dftBuffer, length, __a); std::transform(s_dftBuffer, s_dftBuffer + length, s_dftBuffer, [](uint64_t x) { return s_mg.multiply(x, x); }); idft(s_dftBuffer, length); bint res(empty(__a.m_length * 2, false)); long long carry = 0; for (uint32_t i = 0; i + 1 < res.m_length; i++) { auto [quot, rem] = std::div((long long)(s_mg.reduce(s_dftBuffer[i]) + carry), (long long)_N); carry = quot, res.m_data[i] = rem; } res.m_data[res.m_length - 1] = carry; res.shrink(); return res; } static bint &inplace_multiply(bint &__a, long long __b) { uint64_t carry = 0, i = 0; while (i < __a.m_length) { auto [quot, rem] = std::div((long long)(__a.m_data[i] * __b + carry), (long long)_N); __a.m_data[i++] = rem; carry = quot; } return __a; } static bint multiply(const bint &__a, long long __b) { uint64_t carry = 0, i = 0; while (i < __a.m_length) { auto [quot, rem] = std::div((long long)(__a.m_data[i] * __b + carry), (long long)_N); s_dftBuffer[i++] = rem; carry = quot; } while (carry) { auto [quot, rem] = std::div((long long)carry, (long long)_N); s_dftBuffer[i++] = rem; carry = quot; } bint res(empty(i, __b > 0 ? __a.m_negative : !__a.m_negative)); while (~--i) res.m_data[i] = s_dftBuffer[i]; return res; } bint &shrink() { if (!m_length) return *this; while (m_length && !m_data[m_length - 1]) m_length--; if (m_length) return *this; free(m_data); return setSign(false); } bint &opposite() { return setSign(!m_negative); } bint &setSign(bool __negative) { m_negative = m_length ? __negative : false; return *this; } bint &operator=(bint &&__other) { if (m_length) free(m_data); m_length = __other.m_length; m_data = __other.m_data; __other.m_length = 0; return setSign(__other.m_negative); } bint &operator=(const bint &__other) { if (m_length) free(m_data); if ((m_length = __other.m_length)) std::copy_n(__other.m_data, m_length, m_data = malloc(m_length)); return setSign(__other.m_negative); } bint &operator++() { return inc_dec<1, false>(*this); } bint &operator--() { return inc_dec<-1, true>(*this); } uint32_t length() const { return m_length ? (m_length - 1) * _W + (std::upper_bound(bases.val, bases.val + _W, m_data[m_length - 1]) - bases.val) : 1; } uint32_t ctz() const { if (!m_length) return 0; uint32_t i = 0, res = 0; while (i < m_length && !m_data[i]) {} for (uint32_t digit = m_data[i]; digit && digit % _B == 0; digit /= _B, res++) {} return i * _W + res; } bint inv() const { if (m_length == 1) return bint(bases.val[_W * 2] / m_data[0]); else if (m_length == 2) return bint(__int128_t(bases.val[_W * 2]) * bases.val[_W * 2] / (__int128_t(m_data[1]) * _N + m_data[0])); else { bint res((*this >> (m_length - 1) / 2 * _W).inv()); return ((res + res) << (m_length - 1) / 2 * _W) - ((*this * (res * res)) >> (m_length / 2 + 1) * 2 * _W); } } bint operator++(int) { bint old(*this); ++*this; return old; } bint operator--(int) { bint old(*this); --*this; return old; } bint &operator+=(const bint &__other) { return plus_minus_by<std::equal_to<bool>>(*this, __other); } bint &operator-=(const bint &__other) { return plus_minus_by<std::not_equal_to<bool>>(*this, __other); } bint &operator*=(const bint &__other) { return __other <= s_divThresh ? *this *= (long long)__other : (*this = *this * __other); } bint &operator*=(long long __other) { if (!m_length) return *this; if (!__other) return *this = zero(); return (m_data[m_length - 1] + 1) * __other < _N ? inplace_multiply(*this, __other) : *this = multiply(*this, __other); } bint &operator/=(const bint &__other) { return __other <= s_divThresh ? *this /= (long long)__other : *this = div_mod<false>(*this, __other); } bint &operator/=(long long __other) { if (!m_length) return *this; long long carry = 0; for (uint32_t i = m_length - 1; ~i; i--) { auto [q, r] = std::div(m_data[i] + carry * _N, __other); m_data[i] = q, carry = r; } if (__other < 0) opposite(); return shrink(); } bint &operator%=(const bint &__other) { return __other <= s_divThresh ? *this = bint(div_mod(*this, (long long)(__other)).second) : div_mod<true>(*this, __other).second; } bint &operator%=(long long __other) { return *this = bint(divmod(*this, __other).second); } bint &operator<<=(uint32_t __shift) { return *this = *this << __shift; } bint &operator>>=(uint32_t __shift) { auto [quot, rem] = std::div((int)__shift, (int)_W); if (quot >= m_length || (quot == m_length - 1 && m_data[m_length - 1] < bases.val[rem])) return *this = zero(); std::copy_n(m_data + quot, m_length -= quot, m_data); if (!rem) return *this; uint64_t carry = 0; for (uint32_t i = m_length - 1; ~i; i--) { auto [q, r] = std::div(m_data[i], int(bases.val[rem])); m_data[i] = carry * bases.val[_W - rem] + q; carry = r; } return shrink(); } bint operator+() const { return *this; } bint operator-() const { bint res(*this); res.opposite(); return res; } bool operator==(const bint &__other) const { return m_negative == __other.m_negative && !absCompare(*this, __other); } bool operator!=(const bint &__other) const { return m_negative != __other.m_negative && absCompare(*this, __other); } bool operator<(const bint &__other) const { return m_negative == __other.m_negative ? (m_negative ? absCompare(*this, __other) > 0 : absCompare(*this, __other) < 0) : m_negative; } bool operator>(const bint &__other) const { return m_negative == __other.m_negative ? (m_negative ? absCompare(*this, __other) < 0 : absCompare(*this, __other) > 0) : !m_negative; } bool operator<=(const bint &__other) const { return m_negative == __other.m_negative ? (m_negative ? absCompare(*this, __other) >= 0 : absCompare(*this, __other) <= 0) : m_negative; } bool operator>=(const bint &__other) const { return m_negative == __other.m_negative ? (m_negative ? absCompare(*this, __other) <= 0 : absCompare(*this, __other) >= 0) : !m_negative; } explicit operator bool() const { return m_length; } template <typename _Tp> explicit operator _Tp() const { _Tp res = 0; for (uint32_t i = m_length - 1; ~i; i--) res = res * _N + m_data[i]; return m_negative ? -res : res; } operator std::string() const { if (!m_length) return "0"; std::string res(m_length * _W, '0'); for (uint32_t i = 0; i < m_length; i++) for (uint32_t j = i * _W, digit = m_data[i]; digit; j++, digit /= _B) res[j] = '0' + digit % _B; while (res.size() && res.back() == '0') res.pop_back(); if (m_negative) res.push_back('-'); std::reverse(res.begin(), res.end()); return res; } friend bint operator+(const bint &__a, const bint &__b) { return plus_minus<std::equal_to<bool>>(__a, __b, [](const bint &x) { return x; }); } friend bint operator-(const bint &__a, const bint &__b) { return plus_minus<std::not_equal_to<bool>>(__a, __b, std::negate<bint>()); } friend bint operator*(const bint &__a, const bint &__b) { if (&__a == &__b) return self_multiply(__a); if (!__a.m_length || !__b.m_length) return zero(); if (__a <= s_divThresh) return __b * (long long)__a; if (__b <= s_divThresh) return __a * (long long)__b; uint32_t length = std::__bit_ceil(__a.m_length + __b.m_length - 1); dft(s_dftBuffer, length, __a); dft(s_dftBuffer + length, length, __b); for (uint32_t i = 0; i < length; i++) s_dftBuffer[i] = s_mg.multiply(s_dftBuffer[i], s_dftBuffer[i + length]); idft(s_dftBuffer, length); bint res(empty(__a.m_length + __b.m_length, __a.m_negative != __b.m_negative)); long long carry = 0; for (uint32_t i = 0; i + 1 < res.m_length; i++) { auto [quot, rem] = std::div((long long)(s_mg.reduce(s_dftBuffer[i]) + carry), (long long)_N); carry = quot, res.m_data[i] = rem; } res.m_data[res.m_length - 1] = carry; res.shrink(); return res; } friend bint operator*(const bint &__a, long long __b) { if (!__a.m_length || !__b) return zero(); if ((__a.m_data[__a.m_length - 1] + 1) * __b < _N) { bint res(__a); inplace_multiply(res, __b); return res; } else return multiply(__a, __b); } friend bint operator/(const bint &__a, const bint &__b) { return __b <= s_divThresh ? div_mod(__a, (long long)(__b)).first : div_mod<false>(__a, __b); } friend bint operator/(const bint &__a, long long __b) { return div_mod(__a, __b).first; } friend bint operator%(const bint &__a, const bint &__b) { return __b <= s_divThresh ? bint(div_mod(__a, (long long)(__b)).second) : div_mod<true>(__a, __b).second; } friend long long operator%(const bint &__a, long long __b) { return divmod(__a, __b).second; } friend bint operator<<(const bint &__a, uint32_t __shift) { auto [quot, rem] = std::div((int)__shift, (int)_W); bint res(empty(__a.m_length + quot + (rem > 0), __a.m_negative)); std::copy_n(__a.m_data, __a.m_length, std::fill_n(res.m_data, quot, 0)); if (!rem) return res; uint64_t carry = 0; for (uint32_t i = quot; i + 1 < res.m_length; i++) { auto [q, r] = std::div((long long)(res.m_data[i]) * bases.val[rem] + carry, (long long)_N); carry = q, res.m_data[i] = r; } res.m_data[res.m_length - 1] = carry; res.shrink(); return res; } friend bint operator>>(const bint &__a, uint32_t __shift) { auto [quot, rem] = std::div((int)__shift, (int)_W); if (quot >= __a.m_length || (quot == __a.m_length - 1 && __a.m_data[__a.m_length - 1] < bases.val[rem])) return zero(); bint res(empty(__a.m_length - quot, __a.m_negative)); std::copy_n(__a.m_data + quot, __a.m_length - quot, res.m_data); if (!rem) return res; uint64_t carry = 0; for (uint32_t i = res.m_length - 1; ~i; i--) { auto [q, r] = std::div(res.m_data[i], int(bases.val[rem])); res.m_data[i] = carry * bases.val[_W - rem] + q, carry = r; } res.shrink(); return res; } template <typename _Istream> friend _Istream &operator>>(_Istream &is, bint &self) { std::string number; is >> number; self = fromString(number.data(), number.size()); return is; } template <typename _Ostream> friend _Ostream &operator<<(_Ostream &os, const bint &self) { return os << std::string(self); } }; #pragma pack() } namespace OY { template <typename _ModType, _ModType _P> struct Modular { static constexpr _ModType mod() { return _P; } static constexpr _ModType mod(uint64_t __a) { return __a % _P; } static constexpr _ModType plus(_ModType __a, _ModType __b) { if (__a += __b; __a >= _P) __a -= _P; return __a; } static constexpr _ModType minus(_ModType __a, _ModType __b) { if (__a += _P - __b; __a >= _P) __a -= _P; return __a; } static constexpr _ModType multiply(uint64_t __a, uint64_t __b) { if constexpr (std::is_same_v<_ModType, uint64_t>) return multiply_ld(__a, __b); else return multiply_64(__a, __b); } static constexpr _ModType multiply_64(uint64_t __a, uint64_t __b) { // assert(__a * __b < 1ull << 64); return mod(__a * __b); } static constexpr _ModType multiply_128(uint64_t __a, uint64_t __b) { return __uint128_t(__a) * __b % _P; } static constexpr _ModType multiply_ld(uint64_t __a, uint64_t __b) { // assert(m_P < 1ull << 63 && __a < m_P && __b < m_P); if (std::__countl_zero(__a) + std::__countl_zero(__b) >= 64) return multiply_64(__a, __b); int64_t res = __a * __b - uint64_t(1.L / _P * __a * __b) * _P; if (res < 0) res += _P; else if (res >= _P) res -= _P; return res; } static constexpr _ModType pow(uint64_t __a, uint64_t __n) { if constexpr (std::is_same_v<_ModType, uint64_t>) return pow_ld(__a, __n); else return pow_64(__a, __n); } static constexpr _ModType pow_64(uint64_t __a, uint64_t __n) { // assert(m_P < 1ull << 32); _ModType res = 1, b = mod(__a); while (__n) { if (__n & 1) res = multiply_64(res, b); b = multiply_64(b, b); __n >>= 1; } return res; } static constexpr _ModType pow_128(uint64_t __a, uint64_t __n) { _ModType res = 1, b = mod(__a); while (__n) { if (__n & 1) res = multiply_128(res, b); b = multiply_128(b, b); __n >>= 1; } return res; } static constexpr _ModType pow_ld(uint64_t __a, uint64_t __n) { _ModType res = 1, b = mod(__a); while (__n) { if (__n & 1) res = multiply_ld(res, b); b = multiply_ld(b, b); __n >>= 1; } return res; } }; template <uint32_t _P> using Modular32 = Modular<uint32_t, _P>; template <uint64_t _P> using Modular64 = Modular<uint64_t, _P>; } using bint = OY::BigInt<10, 6, 1 << 20>; const int N=105; int n,i,j,d,x,deg[N],v[N][N],vis[N]; bint f[N],g[N],ans; bint gcd(bint a,bint b){return b==bint::zero()?a:gcd(b,a%b);} int main(){ cin>>n; for(i=1;i<=n;i++){ cin>>deg[i]; for(j=0;j<deg[i];j++)cin>>v[i][j]; } vis[1]=1; f[1]=bint::small(1); g[1]=bint::small(1); ans=bint::small(1); for(i=1;i<=n;i++)if(vis[i]){ //printf("i=%d f=%lld g=%lld\n",i,f[i],g[i]); d=deg[i]; if(f[i]>ans)ans=f[i]; for(j=0;j<d;j++){ x=v[i][j]; bint tmp=gcd(g[i],bint::small(d)); bint F=f[i]*d/tmp; bint G=g[i]/tmp; //printf("%d->%d f=%lld g=%lld\n",i,x,F,G); if(!vis[x]){ vis[x]=1; f[x]=F; g[x]=G; }else{ tmp=gcd(f[x],F); g[x]=(g[x]*F+G*f[x])/tmp; f[x]=f[x]*F/tmp; } } } cout<<ans; } |