/** * */ // header {{{ #include using namespace std; using i8 = int8_t; using u8 = uint8_t; using i16 = int16_t; using u16 = uint16_t; using i32 = int32_t; using u32 = uint32_t; using i64 = int64_t; using u64 = uint64_t; #ifdef __SIZEOF_INT128__ using i128 = __int128; using u128 = unsigned __int128; #endif using f32 = float; using f64 = double; using f80 = __float80; using f128 = __float128; // }}} template constexpr T PROCON_INF(); template<> constexpr i64 PROCON_INF() { return 1'010'000'000'000'000'000LL; } template<> constexpr f64 PROCON_INF() { return 1e100; } constexpr i64 INF = PROCON_INF(); constexpr f64 FINF = PROCON_INF(); constexpr i64 MOD = 1'000'000'007LL; constexpr f64 EPS = 1e-12; constexpr f64 PI = 3.14159265358979323846; // util {{{ #define FOR(i, start, end) for(i64 i = (start), i##_end=(end); i < i##_end; ++i) #define REP(i, n) FOR(i, 0, n) #define ALL(f,c,...) (([&](decltype((c)) cccc) { return (f)(std::begin(cccc), std::end(cccc), ## __VA_ARGS__); })(c)) #define SLICE(f,c,l,r,...) (([&](decltype((c)) cccc, decltype((l)) llll, decltype((r)) rrrr) {\ auto iiii = llll <= rrrr ? std::begin(cccc)+llll : std::end(cccc);\ auto jjjj = llll <= rrrr ? std::begin(cccc)+rrrr : std::end(cccc);\ return (f)(iiii, jjjj, ## __VA_ARGS__);\ })(c,l,r)) #define GENERIC(f) ([](auto&&... args) -> decltype(auto) { return (f)(std::forward(args)...); }) // BoolArray {{{ class BoolArray { public: using value_type = bool; using reference = value_type&; using const_reference = const value_type&; using iterator = value_type*; using const_iterator = const value_type*; using difference_type = ptrdiff_t; using size_type = size_t; using reverse_iterator = std::reverse_iterator; using const_reverse_iterator = std::reverse_iterator; BoolArray() : BoolArray(0) {} explicit BoolArray(size_t n) : BoolArray(n,false) {} BoolArray(size_t n, bool value) : size_(n), data_(new bool[n]) { ALL(fill, *this, value); } BoolArray(initializer_list init) : size_(init.size()), data_(new bool[size_]) { ALL(copy, init, begin()); } template BoolArray(InputIt first, InputIt last) { deque tmp(first, last); size_ = tmp.size(); data_ = new bool[size_]; ALL(copy, tmp, begin()); } BoolArray(const BoolArray& other) : size_(other.size_), data_(new bool[size_]) { ALL(copy, other, begin()); } BoolArray(BoolArray&& other) noexcept : size_(other.size_), data_(other.data_) { other.data_ = nullptr; } BoolArray& operator=(const BoolArray& other) { if(this == &other) return *this; if(!data_ || size_ < other.size_) { delete[] data_; data_ = new bool[other.size_]; } size_ = other.size_; ALL(copy, other, begin()); return *this; } BoolArray& operator=(BoolArray&& other) noexcept { if(this == &other) return *this; size_ = other.size_; data_ = other.data_; other.data_ = nullptr; } BoolArray& operator=(initializer_list init) { if(!data_ || size_ < init.size()) { delete[] data_; data_ = new bool[init.size()]; } size_ = init.size(); ALL(copy, init, begin()); return *this; } void swap(BoolArray& other) noexcept { std::swap(size_, other.size_); std::swap(data_, other.data_); } ~BoolArray() { delete[] data_; data_ = nullptr; } bool empty() const noexcept { return size_ == 0; } size_type size() const noexcept { return size_; } size_type max_size() const noexcept { return 1'010'000'000; } iterator begin() noexcept { return data_; } const_iterator begin() const noexcept { return data_; } const_iterator cbegin() const noexcept { return data_; } iterator end() noexcept { return data_+size_; } const_iterator end() const noexcept { return data_+size_; } const_iterator cend() const noexcept { return data_+size_; } reverse_iterator rbegin() noexcept { return reverse_iterator(end()); } const_reverse_iterator rbegin() const noexcept { return const_reverse_iterator(end()); } const_reverse_iterator crbegin() const noexcept { return const_reverse_iterator(end()); } reverse_iterator rend() noexcept { return reverse_iterator(begin()); } const_reverse_iterator rend() const noexcept { return const_reverse_iterator(begin()); } const_reverse_iterator crend() const noexcept { return const_reverse_iterator(begin()); } reference operator[](size_type pos) { return data_[pos]; } const_reference operator[](size_type pos) const { return data_[pos]; } bool* data() noexcept { return data_; } const bool* data() const noexcept { return data_; } private: size_t size_; bool* data_; }; void swap(BoolArray& lhs, BoolArray& rhs) noexcept { lhs.swap(rhs); } bool operator==(const BoolArray& lhs, const BoolArray& rhs) { return equal(begin(lhs), end(lhs), begin(rhs), end(rhs)); } bool operator!=(const BoolArray& lhs, const BoolArray& rhs) { return !(lhs == rhs); } bool operator<(const BoolArray& lhs, const BoolArray& rhs) { return lexicographical_compare(begin(lhs), end(lhs), begin(rhs), end(rhs)); } bool operator> (const BoolArray& lhs, const BoolArray& rhs) { return rhs < lhs; } bool operator<=(const BoolArray& lhs, const BoolArray& rhs) { return !(rhs < lhs); } bool operator>=(const BoolArray& lhs, const BoolArray& rhs) { return !(lhs < rhs); } // }}} // 多次元 vector {{{ // 最内周が vector になるのを避けるための措置 template struct Array1Container { using type = vector; }; template<> struct Array1Container { using type = BoolArray; }; // イテレート用 template struct is_arrayn_container { static constexpr bool value = false; }; template struct is_arrayn_container> { static constexpr bool value = true; }; template<> struct is_arrayn_container { static constexpr bool value = true; }; template auto arrayn_make(i64 n, T x) { using Cont = typename Array1Container::type; return Cont(n, x); } template = nullptr> auto arrayn_make(i64 n, Args... args) { auto inner = arrayn_make(args...); return vector(n, inner); } template enable_if_t::value> arrayn_foreach(T& e, F f) { f(e); } template enable_if_t::value> arrayn_foreach(T& ary, F f) { for(auto& e : ary) arrayn_foreach(e, f); } template enable_if_t::value> arrayn_fill(T& ary, const U& x) { arrayn_foreach(ary, [&x](auto& e) { e = x; }); } // }}} // 多次元生配列 {{{ template enable_if_t::value==0> CARRAY_FOREACH(T& e, F f) { f(e); } template enable_if_t::value!=0> CARRAY_FOREACH(Array& ary, F f) { for(auto& e : ary) CARRAY_FOREACH(e, f); } template enable_if_t::value!=0> CARRAY_FILL(Array& ary, const U& v) { CARRAY_FOREACH(ary, [&v](auto& e) { e = v; }); } // }}} // メモ化ラッパー (8引数まで) {{{ template class Memoized1 { static_assert(N1 >= 1, ""); public: explicit Memoized1(F&& f) : f_(forward(f)) {} decltype(auto) operator()(i64 x1) const { using R = decltype(f_(*this,x1)); static bool done[N1] {}; static R memo[N1]; if(!done[x1]) { memo[x1] = f_(*this,x1); done[x1] = true; } return memo[x1]; } private: const F f_; }; template class Memoized2 { static_assert(N1 >= 1 && N2 >= 1, ""); public: explicit Memoized2(F&& f) : f_(forward(f)) {} decltype(auto) operator()(i64 x1, i64 x2) const { using R = decltype(f_(*this,x1,x2)); static bool done[N1][N2] {}; static R memo[N1][N2]; if(!done[x1][x2]) { memo[x1][x2] = f_(*this,x1,x2); done[x1][x2] = true; } return memo[x1][x2]; } private: const F f_; }; template class Memoized3 { static_assert(N1 >= 1 && N2 >= 1 && N3 >= 1, ""); public: explicit Memoized3(F&& f) : f_(forward(f)) {} decltype(auto) operator()(i64 x1, i64 x2, i64 x3) const { using R = decltype(f_(*this,x1,x2,x3)); static bool done[N1][N2][N3] {}; static R memo[N1][N2][N3]; if(!done[x1][x2][x3]) { memo[x1][x2][x3] = f_(*this,x1,x2,x3); done[x1][x2][x3] = true; } return memo[x1][x2][x3]; } private: const F f_; }; template class Memoized4 { static_assert(N1 >= 1 && N2 >= 1 && N3 >= 1 && N4 >= 1, ""); public: explicit Memoized4(F&& f) : f_(forward(f)) {} decltype(auto) operator()(i64 x1, i64 x2, i64 x3, i64 x4) const { using R = decltype(f_(*this,x1,x2,x3,x4)); static bool done[N1][N2][N3][N4] {}; static R memo[N1][N2][N3][N4]; if(!done[x1][x2][x3][x4]) { memo[x1][x2][x3][x4] = f_(*this,x1,x2,x3,x4); done[x1][x2][x3][x4] = true; } return memo[x1][x2][x3][x4]; } private: const F f_; }; template class Memoized5 { static_assert(N1 >= 1 && N2 >= 1 && N3 >= 1 && N4 >= 1 && N5 >= 1, ""); public: explicit Memoized5(F&& f) : f_(forward(f)) {} decltype(auto) operator()(i64 x1, i64 x2, i64 x3, i64 x4, i64 x5) const { using R = decltype(f_(*this,x1,x2,x3,x4,x5)); static bool done[N1][N2][N3][N4][N5] {}; static R memo[N1][N2][N3][N4][N5]; if(!done[x1][x2][x3][x4][x5]) { memo[x1][x2][x3][x4][x5] = f_(*this,x1,x2,x3,x4,x5); done[x1][x2][x3][x4][x5] = true; } return memo[x1][x2][x3][x4][x5]; } private: const F f_; }; template class Memoized6 { static_assert(N1 >= 1 && N2 >= 1 && N3 >= 1 && N4 >= 1 && N5 >= 1 && N6 >= 1, ""); public: explicit Memoized6(F&& f) : f_(forward(f)) {} decltype(auto) operator()(i64 x1, i64 x2, i64 x3, i64 x4, i64 x5, i64 x6) const { using R = decltype(f_(*this,x1,x2,x3,x4,x5,x6)); static bool done[N1][N2][N3][N4][N5][N6] {}; static R memo[N1][N2][N3][N4][N5][N6]; if(!done[x1][x2][x3][x4][x5][x6]) { memo[x1][x2][x3][x4][x5][x6] = f_(*this,x1,x2,x3,x4,x5,x6); done[x1][x2][x3][x4][x5][x6] = true; } return memo[x1][x2][x3][x4][x5][x6]; } private: const F f_; }; template class Memoized7 { static_assert(N1 >= 1 && N2 >= 1 && N3 >= 1 && N4 >= 1 && N5 >= 1 && N6 >= 1 && N7 >= 1, ""); public: explicit Memoized7(F&& f) : f_(forward(f)) {} decltype(auto) operator()(i64 x1, i64 x2, i64 x3, i64 x4, i64 x5, i64 x6, i64 x7) const { using R = decltype(f_(*this,x1,x2,x3,x4,x5,x6,x7)); static bool done[N1][N2][N3][N4][N5][N6][N7] {}; static R memo[N1][N2][N3][N4][N5][N6][N7]; if(!done[x1][x2][x3][x4][x5][x6][x7]) { memo[x1][x2][x3][x4][x5][x6][x7] = f_(*this,x1,x2,x3,x4,x5,x6,x7); done[x1][x2][x3][x4][x5][x6][x7] = true; } return memo[x1][x2][x3][x4][x5][x6][x7]; } private: const F f_; }; template class Memoized8 { static_assert(N1 >= 1 && N2 >= 1 && N3 >= 1 && N4 >= 1 && N5 >= 1 && N6 >= 1 && N7 >= 1 && N8 >= 1, ""); public: explicit Memoized8(F&& f) : f_(forward(f)) {} decltype(auto) operator()(i64 x1, i64 x2, i64 x3, i64 x4, i64 x5, i64 x6, i64 x7, i64 x8) const { using R = decltype(f_(*this,x1,x2,x3,x4,x5,x6,x7,x8)); static bool done[N1][N2][N3][N4][N5][N6][N7][N8] {}; static R memo[N1][N2][N3][N4][N5][N6][N7][N8]; if(!done[x1][x2][x3][x4][x5][x6][x7][x8]) { memo[x1][x2][x3][x4][x5][x6][x7][x8] = f_(*this,x1,x2,x3,x4,x5,x6,x7,x8); done[x1][x2][x3][x4][x5][x6][x7][x8] = true; } return memo[x1][x2][x3][x4][x5][x6][x7][x8]; } private: const F f_; }; template decltype(auto) MEMOIZE(F&& f) { return Memoized1(forward(f)); } template decltype(auto) MEMOIZE(F&& f) { return Memoized2(forward(f)); } template decltype(auto) MEMOIZE(F&& f) { return Memoized3(forward(f)); } template decltype(auto) MEMOIZE(F&& f) { return Memoized4(forward(f)); } template decltype(auto) MEMOIZE(F&& f) { return Memoized5(forward(f)); } template decltype(auto) MEMOIZE(F&& f) { return Memoized6(forward(f)); } template decltype(auto) MEMOIZE(F&& f) { return Memoized7(forward(f)); } template decltype(auto) MEMOIZE(F&& f) { return Memoized8(forward(f)); } // }}} // lambda で再帰 {{{ template class FixPoint { public: explicit constexpr FixPoint(F&& f) : f_(forward(f)) {} template constexpr decltype(auto) operator()(Args&&... args) const { return f_(*this, forward(args)...); } private: const F f_; }; template decltype(auto) FIX(F&& f) { return FixPoint(forward(f)); } // }}} // tuple {{{ template = nullptr> constexpr auto tuple_head(const tuple& t) { return get<0>(t); } template constexpr auto tuple_tail_helper(const tuple& t, index_sequence) { return make_tuple(get(t)...); } template = nullptr> constexpr auto tuple_tail(const tuple&) { return make_tuple(); } template = nullptr> constexpr auto tuple_tail(const tuple& t) { return tuple_tail_helper(t, make_index_sequence()); } // }}} // FST/SND {{{ template T1& FST(pair& p) { return p.first; } template const T1& FST(const pair& p) { return p.first; } template T2& SND(pair& p) { return p.second; } template const T2& SND(const pair& p) { return p.second; } template = nullptr> auto& FST(tuple& t) { return get<0>(t); } template = nullptr> const auto& FST(const tuple& t) { return get<0>(t); } template = nullptr> auto& SND(tuple& t) { return get<1>(t); } template = nullptr> const auto& SND(const tuple& t) { return get<1>(t); } // }}} template i64 SIZE(const C& c) { return static_cast(c.size()); } template i64 SIZE(const T (&)[N]) { return static_cast(N); } bool is_odd (i64 x) { return x % 2 != 0; } bool is_even(i64 x) { return x % 2 == 0; } template i64 cmp(T x, T y) { return (y i64 sgn(T x) { return cmp(x, T(0)); } // lo:OK, hi:NG template i64 bisect_integer(i64 lo, i64 hi, Pred pred) { assert(lo < hi); while(lo+1 < hi) { i64 mid = (lo+hi) / 2; if(pred(mid)) lo = mid; else hi = mid; } return lo; } template f64 bisect_real(f64 lo, f64 hi, Pred pred, i64 iter=100) { assert(lo < hi); REP(_, iter) { f64 mid = (lo+hi) / 2; if(pred(mid)) lo = mid; else hi = mid; } return lo; } i64 ipow(i64 x, i64 e) { assert(e >= 0); i64 res = 1; REP(_, e) { res *= x; } return res; } i64 isqrt(i64 x) { assert(x >= 0); i64 lo = 0; i64 hi = min(x/2+2, 3037000500LL); return bisect_integer(lo, hi, [x](i64 r) { return r*r <= x; }); } // 0 <= ilog2(x) <= 62 i64 ilog2(i64 x) { assert(x > 0); return 63 - __builtin_clzll(x); } // 0 <= ilog10(x) <= 18 i64 ilog10(i64 x) { assert(x > 0); static constexpr i64 TABLE[18] { 9LL, 99LL, 999LL, 9999LL, 99999LL, 999999LL, 9999999LL, 99999999LL, 999999999LL, 9999999999LL, 99999999999LL, 999999999999LL, 9999999999999LL, 99999999999999LL, 999999999999999LL, 9999999999999999LL, 99999999999999999LL, 999999999999999999LL, }; REP(i, SIZE(TABLE)) { if(x <= TABLE[i]) return i; } return SIZE(TABLE); } // Haskell の divMod と同じ pair divmod(i64 a, i64 b) { i64 q = a / b; i64 r = a % b; if((b>0 && r<0) || (b<0 && r>0)) { --q; r += b; } return {q,r}; } i64 div_ceil(i64 a, i64 b) { i64 q = a / b; i64 r = a % b; if((b>0 && r>0) || (b<0 && r<0)) ++q; return q; } i64 div_floor(i64 a, i64 b) { return divmod(a,b).first; } i64 modulo(i64 a, i64 b) { return divmod(a,b).second; } bool feq(f64 x, f64 y, f64 eps=EPS) { return fabs(x-y) < eps; } template> bool chmax(T& xmax, const U& x, Comp comp={}) { if(comp(xmax, x)) { xmax = x; return true; } return false; } template> bool chmin(T& xmin, const U& x, Comp comp={}) { if(comp(x, xmin)) { xmin = x; return true; } return false; } template> ForwardIt bsearch_find(ForwardIt first, ForwardIt last, const T& x, Comp comp={}) { auto it = lower_bound(first, last, x, comp); if(it == last || comp(x,*it)) return last; return it; } // x 未満の最後の要素 template> BidiIt bsearch_lt(BidiIt first, BidiIt last, const T& x, Comp comp={}) { auto it = lower_bound(first, last, x, comp); if(it == first) return last; return prev(it); } // x 以下の最後の要素 template> BidiIt bsearch_le(BidiIt first, BidiIt last, const T& x, Comp comp={}) { auto it = upper_bound(first, last, x, comp); if(it == first) return last; return prev(it); } // x より大きい最初の要素 template> BidiIt bsearch_gt(BidiIt first, BidiIt last, const T& x, Comp comp={}) { return upper_bound(first, last, x, comp); } // x 以上の最初の要素 template> BidiIt bsearch_ge(BidiIt first, BidiIt last, const T& x, Comp comp={}) { return lower_bound(first, last, x, comp); } template auto SUM(InputIt first, InputIt last) { using T = typename iterator_traits::value_type; return accumulate(first, last, T()); } template ForwardIt transform_self(ForwardIt first, ForwardIt last, UnaryOperation op) { return transform(first, last, first, op); } template void UNIQ(C& c) { c.erase(ALL(unique,c), end(c)); } template auto FLIP(BinaryFunc f) { return [f](const auto& x, const auto& y) { return f(y,x); }; } template auto ON(BinaryFunc bf, UnaryFunc uf) { return [bf,uf](const auto& x, const auto& y) { return bf(uf(x), uf(y)); }; } template auto LT_ON(F f) { return ON(less<>(), f); } template auto GT_ON(F f) { return ON(greater<>(), f); } template auto EQ_ON(F f) { return ON(equal_to<>(), f); } template auto NE_ON(F f) { return ON(not_equal_to<>(), f); } template> auto EQUIV(Comp comp={}) { return [comp](const auto& lhs, const auto& rhs) { return !comp(lhs,rhs) && !comp(rhs,lhs); }; } struct IDENTITY { template constexpr T&& operator()(T&& x) const noexcept { return forward(x); } }; template void advance_bounded(ForwardIt first, ForwardIt last, ForwardIt& it, i64 n) { if(n > 0) { auto bound = distance(it, last); advance(it, min(n, bound)); } else if(n < 0) { auto bound = distance(it, first); advance(it, max(n, bound)); } } char digit_chr(i64 n) { return static_cast('0' + n); } i64 digit_ord(char c) { return c - '0'; } char lower_chr(i64 n) { return static_cast('a' + n); } i64 lower_ord(char c) { return c - 'a'; } char upper_chr(i64 n) { return static_cast('A' + n); } i64 upper_ord(char c) { return c - 'A'; } // 出力は operator<< を直接使わず、このテンプレート経由で行う // 提出用出力とデバッグ用出力を分けるため template struct Formatter { static ostream& write_str(ostream& out, const T& x) { return out << x; } static ostream& write_repr(ostream& out, const T& x) { return out << x; } }; template ostream& WRITE_STR(ostream& out, const T& x) { return Formatter::write_str(out, x); } template ostream& WRITE_REPR(ostream& out, const T& x) { return Formatter::write_repr(out, x); } template ostream& WRITE_JOIN_STR(ostream& out, InputIt first, InputIt last, const string& sep) { while(first != last) { WRITE_STR(out, *first++); if(first != last) out << sep; } return out; } template ostream& WRITE_JOIN_REPR(ostream& out, InputIt first, InputIt last, const string& sep) { while(first != last) { WRITE_REPR(out, *first++); if(first != last) out << sep; } return out; } template ostream& WRITE_RANGE_STR(ostream& out, InputIt first, InputIt last) { return WRITE_JOIN_STR(out, first, last, " "); } template ostream& WRITE_RANGE_REPR(ostream& out, InputIt first, InputIt last) { out << "["; WRITE_JOIN_REPR(out, first, last, ", "); out << "]"; return out; } template void FROM_STR(const string& s, T& x) { istringstream in(s); in >> x; } template string TO_STR(const T& x) { ostringstream out; WRITE_STR(out, x); return out.str(); } template string TO_REPR(const T& x) { ostringstream out; WRITE_REPR(out, x); return out.str(); } template string RANGE_TO_STR(InputIt first, InputIt last) { ostringstream out; WRITE_RANGE_STR(out, first, last); return out.str(); } template string RANGE_TO_REPR(InputIt first, InputIt last) { ostringstream out; WRITE_RANGE_REPR(out, first, last); return out.str(); } template string JOIN(InputIt first, InputIt last, const string& sep) { ostringstream out; WRITE_JOIN_STR(out, first, last, sep); return out.str(); } template<> struct Formatter { static ostream& write_str(ostream& out, i64 x) { return out << x; } static ostream& write_repr(ostream& out, i64 x) { if(x == INF) return out << "INF"; if(x == -INF) return out << "-INF"; return out << x; } }; template<> struct Formatter { static ostream& write_str(ostream& out, f64 x) { return out << x; } static ostream& write_repr(ostream& out, f64 x) { #pragma GCC diagnostic push #pragma GCC diagnostic ignored "-Wfloat-equal" if(x == FINF) return out << "FINF"; if(x == -FINF) return out << "-FINF"; #pragma GCC diagnostic pop return out << x; } }; template struct Formatter> { static ostream& write_str(ostream& out, const vector& v) { return WRITE_RANGE_STR(out, begin(v), end(v)); } static ostream& write_repr(ostream& out, const vector& v) { out << "vector"; return WRITE_RANGE_REPR(out, begin(v), end(v)); } }; template<> struct Formatter { static ostream& write_str(ostream& out, const BoolArray& a) { return WRITE_RANGE_STR(out, begin(a), end(a)); } static ostream& write_repr(ostream& out, const BoolArray& a) { out << "BoolArray"; return WRITE_RANGE_REPR(out, begin(a), end(a)); } }; template struct Formatter> { static ostream& write_str(ostream& out, const pair& p) { WRITE_STR(out, p.first); out << ' '; WRITE_STR(out, p.second); return out; } static ostream& write_repr(ostream& out, const pair& p) { out << "("; WRITE_REPR(out, p.first); out << ","; WRITE_REPR(out, p.second); out << ")"; return out; } }; template struct Formatter> { template = nullptr> static ostream& write_str_impl(ostream& out, const tuple&) { return out; } template = nullptr> static ostream& write_str_impl(ostream& out, const tuple& t) { if(I != 0) out << ' '; WRITE_STR(out, get(t)); return write_str_impl(out, t); } template = nullptr> static ostream& write_repr_impl(ostream& out, const tuple&) { if(sizeof...(TS) == 0) out << "("; return out << ")"; } template = nullptr> static ostream& write_repr_impl(ostream& out, const tuple& t) { if(I == 0) out << "("; else out << ","; WRITE_REPR(out, get(t)); return write_repr_impl(out, t); } static ostream& write_str(ostream& out, const tuple& t) { return write_str_impl(out, t); } static ostream& write_repr(ostream& out, const tuple& t) { return write_repr_impl(out, t); } }; template void RD(T& x) { cin >> x; #ifdef PROCON_LOCAL assert(cin); #endif } template auto RD_ARRAY(i64 n) { auto res = arrayn_make(n, T()); arrayn_foreach(res, [](T& e) { RD(e); }); return res; } template auto RD_ARRAY2(i64 h, i64 w) { auto res = arrayn_make(h,w, T()); arrayn_foreach(res, [](T& e) { RD(e); }); return res; } template pair RD_PAIR() { T1 x; RD(x); T2 y; RD(y); return { x, y }; } template = nullptr> auto RD_TUPLE() { return make_tuple(); } template auto RD_TUPLE() { T x; RD(x); return tuple_cat(make_tuple(x), RD_TUPLE()); } void PRINT() {} template void PRINT(const T& x, const TS& ...args) { WRITE_STR(cout, x); if(sizeof...(args)) { cout << ' '; PRINT(args...); } } template void PRINTLN(const TS& ...args) { PRINT(args...); cout << '\n'; } [[noreturn]] void EXIT() { #ifdef __OPTIMIZE__ # ifdef PROCON_LOCAL cerr.flush(); # endif cout.flush(); _Exit(0); #else exit(0); #endif } template void DBG_IMPL(i64 line, const char* expr, const T& value) { #ifdef PROCON_LOCAL cerr << "[L " << line << "]: "; cerr << expr << " = "; WRITE_REPR(cerr, value); cerr << "\n"; #endif } template void DBG_CARRAY_IMPL(i64 line, const char* expr, const T (&ary)[N]) { #ifdef PROCON_LOCAL cerr << "[L " << line << "]: "; cerr << expr << " = "; WRITE_RANGE_REPR(cerr, begin(ary), end(ary)); cerr << "\n"; #endif } template void DBG_RANGE_IMPL(i64 line, const char* expr1, const char* expr2, InputIt first, InputIt last) { #ifdef PROCON_LOCAL cerr << "[L " << line << "]: "; cerr << expr1 << "," << expr2 << " = "; WRITE_RANGE_REPR(cerr, first, last); cerr << "\n"; #endif } #define DBG(expr) DBG_IMPL(__LINE__, #expr, (expr)) #define DBG_CARRAY(expr) DBG_CARRAY_IMPL(__LINE__, #expr, (expr)) #define DBG_RANGE(first,last) DBG_RANGE_IMPL(__LINE__, #first, #last, (first), (last)) #define PAIR make_pair #define TUPLE make_tuple // }}} // init {{{ struct ProconInit { static constexpr int IOS_PREC = 15; static constexpr bool AUTOFLUSH = false; ProconInit() { cin.tie(nullptr); ios::sync_with_stdio(false); cout << fixed << setprecision(IOS_PREC); #ifdef PROCON_LOCAL cerr << fixed << setprecision(IOS_PREC); #endif if(AUTOFLUSH) cout << unitbuf; } } PROCON_INIT; // }}} // container {{{ // hash {{{ template struct procon_hash { size_t operator()(const T& x) const { return hash()(x); } }; template size_t procon_hash_value(const T& x) { return procon_hash()(x); } template void procon_hash_combine(size_t& seed, const T& x) { seed ^= procon_hash_value(x) + 0x9e3779b9 + (seed<<6) + (seed>>2); } template void procon_hash_range(size_t& seed, InputIt first, InputIt last) { for(; first != last; ++first) procon_hash_combine(seed, *first); } template size_t procon_hash_range(InputIt first, InputIt last) { size_t seed = 0; procon_hash_range(seed, first, last); return seed; } template = nullptr> void procon_hash_tuple(size_t&, const tuple&) {} template = nullptr> void procon_hash_tuple(size_t& seed, const tuple& t) { procon_hash_combine(seed, tuple_head(t)); procon_hash_tuple(seed, tuple_tail(t)); } template struct procon_hash> { size_t operator()(const vector& v) const { return ALL(procon_hash_range, v); } }; template struct procon_hash> { size_t operator()(const pair& p) const { size_t seed = 0; procon_hash_combine(seed, p.first); procon_hash_combine(seed, p.second); return seed; } }; template struct procon_hash> { size_t operator()(const tuple& t) const { size_t seed = 0; procon_hash_tuple(seed, t); return seed; } }; template> using HashSet = unordered_set,Eq>; template> using HashMap = unordered_map,Eq>; template> using HashMultiset = unordered_multiset,Eq>; template> using HashMultimap = unordered_multimap,Eq>; // }}} template using MaxHeap = priority_queue, less>; template using MinHeap = priority_queue, greater>; // set/map/multiset/multimap search {{{ // set {{{ template auto set_search_lt(set& s, const T& x) { auto it = s.lower_bound(x); if(it == begin(s)) return end(s); return prev(it); } template auto set_search_lt(const set& s, const T& x) { auto it = s.lower_bound(x); if(it == begin(s)) return end(s); return prev(it); } template auto set_search_le(set& s, const T& x) { auto it = s.upper_bound(x); if(it == begin(s)) return end(s); return prev(it); } template auto set_search_le(const set& s, const T& x) { auto it = s.upper_bound(x); if(it == begin(s)) return end(s); return prev(it); } template auto set_search_gt(set& s, const T& x) { return s.upper_bound(x); } template auto set_search_gt(const set& s, const T& x) { return s.upper_bound(x); } template auto set_search_ge(set& s, const T& x) { return s.lower_bound(x); } template auto set_search_ge(const set& s, const T& x) { return s.lower_bound(x); } // }}} // map {{{ template auto map_search_lt(map& m, const K& x) { auto it = m.lower_bound(x); if(it == begin(m)) return end(m); return prev(it); } template auto map_search_lt(const map& m, const K& x) { auto it = m.lower_bound(x); if(it == begin(m)) return end(m); return prev(it); } template auto map_search_le(map& m, const K& x) { auto it = m.upper_bound(x); if(it == begin(m)) return end(m); return prev(it); } template auto map_search_le(const map& m, const K& x) { auto it = m.upper_bound(x); if(it == begin(m)) return end(m); return prev(it); } template auto map_search_gt(map& m, const K& x) { return m.upper_bound(x); } template auto map_search_gt(const map& m, const K& x) { return m.upper_bound(x); } template auto map_search_ge(map& m, const K& x) { return m.lower_bound(x); } template auto map_search_ge(const map& m, const K& x) { return m.lower_bound(x); } // }}} // multiset {{{ template auto set_search_lt(multiset& s, const T& x) { auto it = s.lower_bound(x); if(it == begin(s)) return end(s); return prev(it); } template auto set_search_lt(const multiset& s, const T& x) { auto it = s.lower_bound(x); if(it == begin(s)) return end(s); return prev(it); } template auto set_search_le(multiset& s, const T& x) { auto it = s.upper_bound(x); if(it == begin(s)) return end(s); return prev(it); } template auto set_search_le(const multiset& s, const T& x) { auto it = s.upper_bound(x); if(it == begin(s)) return end(s); return prev(it); } template auto set_search_gt(multiset& s, const T& x) { return s.upper_bound(x); } template auto set_search_gt(const multiset& s, const T& x) { return s.upper_bound(x); } template auto set_search_ge(multiset& s, const T& x) { return s.lower_bound(x); } template auto set_search_ge(const multiset& s, const T& x) { return s.lower_bound(x); } // }}} // multimap {{{ template auto map_search_lt(multimap& m, const K& x) { auto it = m.lower_bound(x); if(it == begin(m)) return end(m); return prev(it); } template auto map_search_lt(const multimap& m, const K& x) { auto it = m.lower_bound(x); if(it == begin(m)) return end(m); return prev(it); } template auto map_search_le(multimap& m, const K& x) { auto it = m.upper_bound(x); if(it == begin(m)) return end(m); return prev(it); } template auto map_search_le(const multimap& m, const K& x) { auto it = m.upper_bound(x); if(it == begin(m)) return end(m); return prev(it); } template auto map_search_gt(multimap& m, const K& x) { return m.upper_bound(x); } template auto map_search_gt(const multimap& m, const K& x) { return m.upper_bound(x); } template auto map_search_ge(multimap& m, const K& x) { return m.lower_bound(x); } template auto map_search_ge(const multimap& m, const K& x) { return m.lower_bound(x); } // }}} // }}} template bool set_contains(const set& s, const typename set::key_type& x) { return s.find(x) != end(s); } template bool set_contains(const unordered_set& s, const typename unordered_set::key_type& x) { return s.find(x) != end(s); } template bool set_contains(const multiset& s, const typename multiset::key_type& x) { return s.find(x) != end(s); } template bool set_contains(const unordered_multiset& s, const typename unordered_multiset::key_type& x) { return s.find(x) != end(s); } template bool map_contains(const map& m, const typename map::key_type& k) { return m.find(k) != end(m); } template bool map_contains(const unordered_map& m, const typename unordered_map::key_type& k) { return m.find(k) != end(m); } template bool map_contains(const multimap& m, const typename map::key_type& k) { return m.find(k) != end(m); } template bool map_contains(const unordered_multimap& m, const typename unordered_map::key_type& k) { return m.find(k) != end(m); } template bool multiset_erase_one(multiset& m, const typename multiset::key_type& k) { auto it = m.find(k); if(it == end(m)) return false; m.erase(it); return true; } template bool multiset_erase_one(unordered_multiset& m, const typename unordered_multiset::key_type& k) { auto it = m.find(k); if(it == end(m)) return false; m.erase(it); return true; } // POP() 系 {{{ // 効率は悪い template T POP_FRONT(vector& v) { T x = v.front(); v.erase(begin(v)); return x; } template T POP_BACK(vector& v) { T x = v.back(); v.pop_back(); return x; } template T POP_FRONT(deque& v) { T x = v.front(); v.pop_front(); return x; } template T POP_BACK(deque& v) { T x = v.back(); v.pop_back(); return x; } template T POP_FRONT(forward_list& ls) { T x = ls.front(); ls.pop_front(); return x; } template T POP_FRONT(list& ls) { T x = ls.front(); ls.pop_front(); return x; } template T POP_BACK(list& ls) { T x = ls.back(); ls.pop_back(); return x; } template T POP(stack& stk) { T x = stk.top(); stk.pop(); return x; } template T POP(queue& que) { T x = que.front(); que.pop(); return x; } template T POP(priority_queue& que) { T x = que.top(); que.pop(); return x; } // }}} // bimap {{{ template struct BiHashMap { HashMap fwd_; HashMap rev_; void insert(const T1& x, const T2& y) { auto it_fwd = fwd_.find(x); if(it_fwd == end(fwd_)) { fwd_.insert(it_fwd, make_pair(x,y)); rev_.insert(end(rev_), make_pair(y,x)); } else { assert(y == it_fwd->second); } } bool contains_fwd(const T1& x) const { return map_contains(fwd_, x); } bool contains_rev(const T2& y) const { return map_contains(rev_, y); } const T2& at_fwd(const T1& x) const { auto it = fwd_.find(x); assert(it != end(fwd_)); return it->second; } const T1& at_rev(const T2& y) const { auto it = rev_.find(y); assert(it != end(rev_)); return it->second; } size_t size() const { return fwd_.size(); } }; // }}} // Formatter {{{ template struct Formatter> { static ostream& write_str(ostream& out, const array& a) { return WRITE_RANGE_STR(out, begin(a), end(a)); } static ostream& write_repr(ostream& out, const array& a) { out << "array"; return WRITE_RANGE_REPR(out, begin(a), end(a)); } }; template struct Formatter> { static ostream& write_str(ostream& out, const deque& deq) { return WRITE_RANGE_STR(out, begin(deq), end(deq)); } static ostream& write_repr(ostream& out, const deque& deq) { out << "deque"; return WRITE_RANGE_REPR(out, begin(deq), end(deq)); } }; template struct Formatter> { static ostream& write_str(ostream& out, const forward_list& ls) { return WRITE_RANGE_STR(out, begin(ls), end(ls)); } static ostream& write_repr(ostream& out, const forward_list& ls) { out << "forward_list"; return WRITE_RANGE_REPR(out, begin(ls), end(ls)); } }; template struct Formatter> { static ostream& write_str(ostream& out, const list& ls) { return WRITE_RANGE_STR(out, begin(ls), end(ls)); } static ostream& write_repr(ostream& out, const list& ls) { out << "list"; return WRITE_RANGE_REPR(out, begin(ls), end(ls)); } }; template struct Formatter> { static ostream& write_str(ostream& out, const set& s) { return WRITE_RANGE_STR(out, begin(s), end(s)); } static ostream& write_repr(ostream& out, const set& s) { out << "set"; return WRITE_RANGE_REPR(out, begin(s), end(s)); } }; template struct Formatter> { static ostream& write_str(ostream& out, const multiset& s) { return WRITE_RANGE_STR(out, begin(s), end(s)); } static ostream& write_repr(ostream& out, const multiset& s) { out << "multiset"; return WRITE_RANGE_REPR(out, begin(s), end(s)); } }; template struct Formatter> { static ostream& write_str(ostream& out, const unordered_set& s) { return WRITE_RANGE_STR(out, begin(s), end(s)); } static ostream& write_repr(ostream& out, const unordered_set& s) { out << "unordered_set"; return WRITE_RANGE_REPR(out, begin(s), end(s)); } }; template struct Formatter> { static ostream& write_str(ostream& out, const unordered_multiset& s) { return WRITE_RANGE_STR(out, begin(s), end(s)); } static ostream& write_repr(ostream& out, const unordered_multiset& s) { out << "unordered_multiset"; return WRITE_RANGE_REPR(out, begin(s), end(s)); } }; template struct Formatter> { static ostream& write_str(ostream& out, const map& m) { return WRITE_RANGE_STR(out, begin(m), end(m)); } static ostream& write_repr(ostream& out, const map& m) { out << "map"; return WRITE_RANGE_REPR(out, begin(m), end(m)); } }; template struct Formatter> { static ostream& write_str(ostream& out, const multimap& m) { return WRITE_RANGE_STR(out, begin(m), end(m)); } static ostream& write_repr(ostream& out, const multimap& m) { out << "multimap"; return WRITE_RANGE_REPR(out, begin(m), end(m)); } }; template struct Formatter> { static ostream& write_str(ostream& out, const unordered_map& m) { return WRITE_RANGE_STR(out, begin(m), end(m)); } static ostream& write_repr(ostream& out, const unordered_map& m) { out << "unordered_map"; return WRITE_RANGE_REPR(out, begin(m), end(m)); } }; template struct Formatter> { static ostream& write_str(ostream& out, const unordered_multimap& m) { return WRITE_RANGE_STR(out, begin(m), end(m)); } static ostream& write_repr(ostream& out, const unordered_multimap& m) { out << "unordered_multimap"; return WRITE_RANGE_REPR(out, begin(m), end(m)); } }; template struct Formatter> { static ostream& write_str(ostream& out, const stack& orig) { stack stk(orig); while(!stk.empty()) { WRITE_STR(out, stk.top()); stk.pop(); if(!stk.empty()) out << ' '; } return out; } static ostream& write_repr(ostream& out, const stack& orig) { stack stk(orig); out << "stack["; while(!stk.empty()) { WRITE_REPR(out, stk.top()); stk.pop(); if(!stk.empty()) out << ", "; } out << "]"; return out; } }; template struct Formatter> { static ostream& write_str(ostream& out, const queue& orig) { queue que(orig); while(!que.empty()) { WRITE_STR(out, que.front()); que.pop(); if(!que.empty()) out << ' '; } return out; } static ostream& write_repr(ostream& out, const queue& orig) { queue que(orig); out << "queue["; while(!que.empty()) { WRITE_REPR(out, que.front()); que.pop(); if(!que.empty()) out << ", "; } out << "]"; return out; } }; template struct Formatter> { static ostream& write_str(ostream& out, const priority_queue& orig) { priority_queue que(orig); while(!que.empty()) { WRITE_STR(out, que.top()); que.pop(); if(!que.empty()) out << ' '; } return out; } static ostream& write_repr(ostream& out, const priority_queue& orig) { priority_queue que(orig); out << "priority_queue["; while(!que.empty()) { WRITE_REPR(out, que.top()); que.pop(); if(!que.empty()) out << ", "; } out << "]"; return out; } }; // }}} // }}} //-------------------------------------------------------------------- // 各頂点の (indegree,outdegree) のリストを返す vector> graph_degrees(const vector>& g) { i64 n = SIZE(g); vector> res(n, {0,0}); REP(from, n) { for(i64 to : g[from]) { ++FST(res[from]); ++SND(res[to]); } } return res; } // 無向グラフのオイラー路 // // g は隣接リスト(破壊される) // start は始点 vector graph_euler_trail_undirected(vector>& g, i64 start) { vector res; auto dfs = FIX([&g,&res](auto self, i64 v) -> void { while(!g[v].empty()) { i64 to = POP_BACK(g[v]); g[to].erase(ALL(find, g[to], v)); self(to); } res.emplace_back(v); }); dfs(start); ALL(reverse, res); return res; } #if 0 // 無向グラフのオイラー路 (隣接行列版) // // g[v][w]: v,w 間の辺の本数 (破壊される) // start: 始点 vector graph_euler_trail_undirected_matrix(vector>& g, i64 start) { i64 n = SIZE(g); vector res; auto dfs = FIX([n,&g,&res](auto&& self, i64 v) -> void { REP(to, n) { if(g[v][to] == 0) continue; --g[v][to]; --g[to][v]; self(to); } res.emplace_back(v); }); dfs(start); ALL(reverse, res); return res; } #endif // 無向グラフのオイラー路 (隣接行列版) // // g[v][w]: v,w 間の辺の本数 (破壊される) // start: 始点 vector graph_euler_trail_undirected_matrix(vector>& g, i64 start) { enum Action { CALL, RESUME }; i64 n = SIZE(g); vector res; stack> stk; stk.emplace(CALL, start); while(!stk.empty()) { Action act; i64 v; tie(act,v) = POP(stk); switch(act) { case CALL: stk.emplace(RESUME, v); REP(to, n) { if(g[v][to] == 0) continue; --g[v][to]; --g[to][v]; stk.emplace(CALL, to); } break; case RESUME: res.emplace_back(v); break; } } ALL(reverse, res); return res; } // 各頂点の (indegree,outdegree) のリストを返す (隣接行列版) vector> graph_degrees_matrix(const vector>& g) { i64 n = SIZE(g); vector> res(n, {0,0}); REP(from, n) REP(to, n) { i64 k = g[from][to]; SND(res[from]) += k; FST(res[to]) += k; } return res; } [[noreturn]] void impossible() { PRINTLN("NO"); EXIT(); } void solve() { i64 N; RD(N); i64 M; RD(M); auto G = arrayn_make(N,N, 0); i64 v_any = -1; REP(_, M) { i64 s,t; RD(s); RD(t); ++G[s][t]; ++G[t][s]; v_any = s; } auto degs = graph_degrees_matrix(G); DBG(degs); i64 cnt = 0; vector odds; REP(i, N) { i64 d = FST(degs[i]); if(d > 0) ++cnt; if(is_odd(d)) odds.emplace_back(i); } if(!odds.empty() && SIZE(odds) != 2) impossible(); //DBG(odds); i64 s; if(SIZE(odds) == 2) { s = odds.front(); } else { s = v_any; } //DBG(s); auto trail = graph_euler_trail_undirected_matrix(G, s); //DBG(trail); ALL(sort, trail); UNIQ(trail); if(SIZE(trail) != cnt) impossible(); PRINTLN("YES"); } signed main() { solve(); EXIT(); }