#line 2 "/home/shogo314/cpp_include/ou-library/unionfind.hpp" /** * @file unionfind.hpp * @brief UnionFind */ #include #include #include /** * @brief 無向グラフに対して「辺の追加」、「2頂点が連結かの判定」をする */ struct UnionFind { private: int _n; // 負ならサイズ、非負なら親 std::vector parent_or_size; public: UnionFind() : _n(0) {} explicit UnionFind(int n) : _n(n), parent_or_size(n, -1) {} /** * @brief 辺(a,b)を足す * @return 連結したものの代表元 */ int merge(int a, int b) { assert(0 <= a && a < _n); assert(0 <= b && b < _n); int x = leader(a), y = leader(b); if (x == y) return x; if (-parent_or_size[x] < -parent_or_size[y]) std::swap(x, y); parent_or_size[x] += parent_or_size[y]; parent_or_size[y] = x; return x; } /** * @brief 頂点a,bが連結かどうか */ bool same(int a, int b) { assert(0 <= a && a < _n); assert(0 <= b && b < _n); return leader(a) == leader(b); } /** * @brief 頂点aの属する連結成分の代表元 */ int leader(int a) { assert(0 <= a && a < _n); if (parent_or_size[a] < 0) return a; int x = a; while (parent_or_size[x] >= 0) { x = parent_or_size[x]; } while (parent_or_size[a] >= 0) { int t = parent_or_size[a]; parent_or_size[a] = x; a = t; } return x; } /** * @brief 頂点aの属する連結成分のサイズ */ int size(int a) { assert(0 <= a && a < _n); return -parent_or_size[leader(a)]; } /** * @brief グラフを連結成分に分け、その情報を返す * @return 「一つの連結成分の頂点番号のリスト」のリスト */ std::vector> groups() { std::vector leader_buf(_n), group_size(_n); for (int i = 0; i < _n; i++) { leader_buf[i] = leader(i); group_size[leader_buf[i]]++; } std::vector> result(_n); for (int i = 0; i < _n; i++) { result[i].reserve(group_size[i]); } for (int i = 0; i < _n; i++) { result[leader_buf[i]].push_back(i); } result.erase( std::remove_if(result.begin(), result.end(), [&](const std::vector& v) { return v.empty(); }), result.end()); return result; } }; #line 2 "/home/shogo314/cpp_include/sh-library/base/all" #include #line 5 "/home/shogo314/cpp_include/sh-library/base/container_func.hpp" #include #line 3 "/home/shogo314/cpp_include/sh-library/base/traits.hpp" #include #define HAS_METHOD(func_name) \ namespace detail { \ template \ struct has_##func_name##_impl : std::false_type {}; \ template \ struct has_##func_name##_impl().func_name())>> \ : std::true_type {}; \ } \ template \ struct has_##func_name : detail::has_##func_name##_impl::type {}; \ template \ inline constexpr bool has_##func_name##_v = has_##func_name::value; #define HAS_METHOD_ARG(func_name) \ namespace detail { \ template \ struct has_##func_name##_impl : std::false_type {}; \ template \ struct has_##func_name##_impl().func_name(std::declval()))>> \ : std::true_type {}; \ } \ template \ struct has_##func_name : detail::has_##func_name##_impl::type {}; \ template \ inline constexpr bool has_##func_name##_v = has_##func_name::value; HAS_METHOD(repr) HAS_METHOD(type_str) HAS_METHOD(initializer_str) HAS_METHOD(max) HAS_METHOD(min) HAS_METHOD(reversed) HAS_METHOD(sorted) HAS_METHOD(sum) HAS_METHOD(product) HAS_METHOD_ARG(count) HAS_METHOD_ARG(find) HAS_METHOD_ARG(lower_bound) HAS_METHOD_ARG(upper_bound) #define ENABLE_IF_T_IMPL(expr) std::enable_if_t = nullptr #define ENABLE_IF_T(...) ENABLE_IF_T_IMPL((__VA_ARGS__)) template using mem_value_type = typename C::value_type; template using mem_difference_type = typename C::difference_type; #line 9 "/home/shogo314/cpp_include/sh-library/base/container_func.hpp" #define METHOD_EXPAND(func_name) \ template )> \ inline constexpr auto func_name(const T &t) -> decltype(t.func_name()) { \ return t.func_name(); \ } #define METHOD_AND_FUNC_ARG_EXPAND(func_name) \ template )> \ inline constexpr auto func_name(const T &t, const U &u) \ -> decltype(t.func_name(u)) { \ return t.func_name(u); \ } \ template )> \ inline constexpr auto func_name(const T &t, const U &u) \ -> decltype(func_name(t.begin(), t.end(), u)) { \ using namespace std; \ return func_name(t.begin(), t.end(), u); \ } METHOD_EXPAND(reversed) template )> inline constexpr C reversed(C t) { std::reverse(t.begin(), t.end()); return t; } METHOD_EXPAND(sorted) template )> inline constexpr C sorted(C t) { std::sort(t.begin(), t.end()); return t; } template and std::is_invocable_r_v, mem_value_type>)> inline constexpr C sorted(C t, F f) { std::sort(t.begin(), t.end(), f); return t; } template inline constexpr void sort(C &t) { std::sort(t.begin(), t.end()); } template , mem_value_type>)> inline constexpr void sort(C &t, F f) { std::sort(t.begin(), t.end(), f); } template >)> inline constexpr void sort_by_key(C &t, F f) { std::sort(t.begin(), t.end(), [&](const mem_value_type &left, const mem_value_type &right) { return f(left) < f(right); }); } template inline constexpr void reverse(C &t) { std::reverse(t.begin(), t.end()); } METHOD_EXPAND(max) template )> inline constexpr mem_value_type max(const C &v) { assert(v.begin() != v.end()); return *std::max_element(v.begin(), v.end()); } template inline constexpr T max(const std::initializer_list &v) { return std::max(v); } METHOD_EXPAND(min) template )> inline constexpr mem_value_type min(const C &v) { assert(v.begin() != v.end()); return *std::min_element(v.begin(), v.end()); } template inline constexpr T min(const std::initializer_list &v) { return std::min(v); } METHOD_EXPAND(sum) template )> inline constexpr mem_value_type sum(const C &v) { return std::accumulate(v.begin(), v.end(), mem_value_type{}); } template inline constexpr T sum(const std::initializer_list &v) { return std::accumulate(v.begin(), v.end(), T{}); } METHOD_EXPAND(product) template )> inline constexpr mem_value_type product(const C &v) { return std::accumulate(v.begin(), v.end(), mem_value_type{1}, std::multiplies>()); } template inline constexpr T product(const std::initializer_list &v) { return std::accumulate(v.begin(), v.end(), T{1}, std::multiplies()); } template inline constexpr mem_value_type product_xor(const C &v) { return std::accumulate(v.begin(), v.end(), mem_value_type{0}, std::bit_xor>()); } template inline constexpr T product_xor(const std::initializer_list &v) { return std::accumulate(v.begin(), v.end(), T{0}, std::bit_xor()); } METHOD_AND_FUNC_ARG_EXPAND(count) METHOD_AND_FUNC_ARG_EXPAND(find) METHOD_AND_FUNC_ARG_EXPAND(lower_bound) METHOD_AND_FUNC_ARG_EXPAND(upper_bound) template inline constexpr mem_value_type gcd(const C &v) { mem_value_type init(0); for (const auto &e : v) init = std::gcd(init, e); return init; } template inline constexpr mem_value_type average(const C &v) { assert(v.size()); return sum(v) / v.size(); } template inline constexpr mem_value_type median(const C &v) { assert(not v.empty()); std::vector u(v.size()); std::iota(u.begin(), u.end(), 0); std::sort(u.begin(), u.end(), [&](size_t a, size_t b) { return v[a] < v[b]; }); if (v.size() & 1) { return v[u[v.size() / 2]]; } // C++20 // return std::midpoint(v[u[v.size() / 2]], v[u[v.size() / 2 - 1]]); return (v[u[v.size() / 2]] + v[u[v.size() / 2 - 1]]) / 2; } template inline constexpr size_t index(const C &v, const U &x) { return std::distance(v.begin(), std::find(v.begin(), v.end(), x)); } template >)> inline constexpr mem_value_type mex(const C &v) { std::vector b(v.size() + 1); for (const auto &a : v) { if (0 <= a and a < b.size()) { b[a] = true; } } mem_value_type ret; for (size_t i = 0; i < b.size(); i++) { if (not b[i]) { ret = i; break; } } return ret; } template inline constexpr mem_difference_type bisect_left(const C &v, const mem_value_type &x) { return std::distance(v.begin(), lower_bound(v, x)); } template inline constexpr mem_difference_type bisect_right(const C &v, const mem_value_type &x) { return std::distance(v.begin(), upper_bound(v, x)); } #line 6 "/home/shogo314/cpp_include/sh-library/base/functions.hpp" template inline constexpr bool chmin(T1 &a, T2 b) { if (a > b) { a = b; return true; } return false; } template inline constexpr bool chmax(T1 &a, T2 b) { if (a < b) { a = b; return true; } return false; } template inline constexpr bool contains(const C &c, const T &t) { return c.find(t) != c.end(); } inline constexpr long long max(const long long &t1, const long long &t2) { return std::max(t1, t2); } inline constexpr long long min(const long long &t1, const long long &t2) { return std::min(t1, t2); } using std::abs; using std::gcd; using std::lcm; using std::size; template constexpr T extgcd(const T &a, const T &b, T &x, T &y) { T d = a; if (b != 0) { d = extgcd(b, a % b, y, x); y -= (a / b) * x; } else { x = 1; y = 0; } return d; } template > and std::is_invocable_r_v>)> inline constexpr std::common_type_t binary_search(const M &ok, const N &ng, F f) { std::common_type_t _ok = ok, _ng = ng; assert(f(_ok)); while (std::abs(_ok - _ng) > 1) { std::common_type_t mid = (_ok + _ng) / 2; if (f(mid)) { _ok = mid; } else { _ng = mid; } } return _ok; } template > and std::is_invocable_r_v>)> inline constexpr std::common_type_t binary_search(const M &ok, const N &ng, F f) { std::common_type_t _ok = ok, _ng = ng; assert(f(_ok)); for (int i = 0; i < 100; i++) { std::common_type_t mid = (_ok + _ng) / 2; if (f(mid)) { _ok = mid; } else { _ng = mid; } } return _ok; } /** * 0 <= x < a */ inline constexpr bool inrange(long long x, long long a) { return 0 <= x and x < a; } /** * a <= x < b */ inline constexpr bool inrange(long long x, long long a, long long b) { return a <= x and x < b; } /** * 0 <= x < a and 0 <= y < b */ inline constexpr bool inrect(long long x, long long y, long long a, long long b) { return 0 <= x and x < a and 0 <= y and y < b; } #line 8 "/home/shogo314/cpp_include/sh-library/base/io.hpp" namespace tuple_io { template std::basic_istream& read_tuple(std::basic_istream& is, Tuple& t) { is >> std::get(t); if constexpr (I + 1 < std::tuple_size_v) { return read_tuple(is, t); } return is; } template std::basic_ostream& write_tuple(std::basic_ostream& os, const Tuple& t) { os << std::get(t); if constexpr (I + 1 < std::tuple_size_v) { os << CharT(' '); return write_tuple(os, t); } return os; } }; // namespace tuple_io template std::basic_istream& operator>>(std::basic_istream& is, std::pair& p) { is >> p.first >> p.second; return is; } template std::basic_istream& operator>>(std::basic_istream& is, std::tuple& p) { return tuple_io::read_tuple, 0>(is, p); } template std::basic_istream& operator>>(std::basic_istream& is, std::array& a) { for (auto& e : a) is >> e; return is; } template std::basic_istream& operator>>(std::basic_istream& is, std::vector& v) { for (auto& e : v) is >> e; return is; } template std::basic_ostream& operator<<(std::basic_ostream& os, const std::pair& p) { os << p.first << CharT(' ') << p.second; return os; } template std::basic_ostream& operator<<(std::basic_ostream& os, const std::tuple& p) { return tuple_io::write_tuple, 0>(os, p); } template std::basic_ostream& operator<<(std::basic_ostream& os, const std::array& a) { for (size_t i = 0; i < N; ++i) { if (i) os << CharT(' '); os << a[i]; } return os; } template std::basic_ostream& operator<<(std::basic_ostream& os, const std::vector& v) { for (size_t i = 0; i < v.size(); ++i) { if (i) os << CharT(' '); os << v[i]; } return os; } template std::basic_ostream& operator<<(std::basic_ostream& os, const std::set& s) { for (auto itr = s.begin(); itr != s.end(); ++itr) { if (itr != s.begin()) os << CharT(' '); os << *itr; } return os; } /** * @brief 空行出力 */ void print() { std::cout << '\n'; } /** * @brief 出力して改行 * * @tparam T 型 * @param x 出力する値 */ template void print(const T& x) { std::cout << x << '\n'; } /** * @brief 空白区切りで出力して改行 * * @tparam T 1つ目の要素の型 * @tparam Tail 2つ目以降の要素の型 * @param x 1つ目の要素 * @param tail 2つ目以降の要素 */ template void print(const T& x, const Tail&... tail) { std::cout << x << ' '; print(tail...); } /** * @brief 空行出力 */ void err() { std::cerr << std::endl; } /** * @brief 出力して改行 * * @tparam T 型 * @param x 出力する値 */ template void err(const T& x) { std::cerr << x << std::endl; } /** * @brief 空白区切りで出力して改行 * * @tparam T 1つ目の要素の型 * @tparam Tail 2つ目以降の要素の型 * @param x 1つ目の要素 * @param tail 2つ目以降の要素 */ template void err(const T& x, const Tail&... tail) { std::cerr << x << ' '; err(tail...); } #line 3 "/home/shogo314/cpp_include/sh-library/base/type_alias.hpp" using ll = long long; using ull = unsigned long long; using ld = long double; template using vec = std::vector; template using ary = std::array; using str = std::string; using std::deque; using std::list; using std::map; using std::pair; using std::set; using pl = pair; using pd = pair; template using vv = vec>; template using vvv = vec>>; using vl = vec; using vvl = vv; using vvvl = vvv; using vs = vec; using vc = vec; using vi = vec; using vb = vec; template using vp = vec>; using vpl = vec; using vvpl = vv; using vd = vec; using vpd = vec; template using al = ary; template using aal = ary, N1>; template using val = vec>; template using avl = ary; template using ml = std::map; using mll = std::map; using sl = std::set; using spl = set; template using sal = set>; template using asl = ary; template using heap_max = std::priority_queue, std::less>; template using heap_min = std::priority_queue, std::greater>; #line 3 "/home/shogo314/cpp_include/sh-library/base/macro.hpp" #pragma GCC target("avx2") #pragma GCC optimize("O3") #pragma GCC optimize("unroll-loops") #define all(obj) (obj).begin(), (obj).end() #define reps(i, a, n) for (long long i = (a); i < (n); i++) #define rep(i, n) reps(i, 0, (n)) #define rrep(i, n) reps(i, 1, (n) + 1) #define repds(i, a, n) for (long long i = (n)-1; i >= (a); i--) #define repd(i, n) repds(i, 0, (n)) #define rrepd(i, n) repds(i, 1, (n) + 1) #define rep2(i, j, x, y) rep(i, x) rep(j, y) inline void scan(){} template inline void scan(Head&head,Tail&... tail){std::cin>>head;scan(tail...);} #define LL(...) ll __VA_ARGS__;scan(__VA_ARGS__) #define STR(...) str __VA_ARGS__;scan(__VA_ARGS__) #define IN(a, x) a x; std::cin >> x; #define CHAR(x) char x; std::cin >> x; #define VL(a,n) vl a(n); std::cin >> a; #define AL(a,k) al a; std::cin >> a; #define AAL(a,n,m) aal a; std::cin >> a; #define VC(a,n) vc a(n); std::cin >> a; #define VS(a,n) vs a(n); std::cin >> a; #define VPL(a,n) vpl a(n); std::cin >> a; #define VAL(a,n,k) val a(n); std::cin >> a; #define VVL(a,n,m) vvl a(n,vl(m)); std::cin >> a; #define SL(a,n) sl a;{VL(b,n);a=sl(all(b));} #define NO std::cout << "NO" << std::endl; return; #define YES std::cout << "YES" << std::endl; return; #define No std::cout << "No" << std::endl; return; #define Yes std::cout << "Yes" << std::endl; return; #line 8 "/home/shogo314/cpp_include/sh-library/base/vector_func.hpp" template std::vector sorted_idx(const std::vector &v) { std::vector ret(v.size()); std::iota(ret.begin(), ret.end(), 0); std::sort(ret.begin(), ret.end(), [&](std::ptrdiff_t i, std::ptrdiff_t j) { return v[i] < v[j]; }); return ret; } template inline std::vector &operator++(std::vector &v) { for (auto &e : v) e++; return v; } template inline std::vector operator++(std::vector &v, int) { auto res = v; for (auto &e : v) e++; return res; } template inline std::vector &operator--(std::vector &v) { for (auto &e : v) e--; return v; } template inline std::vector operator--(std::vector &v, int) { auto res = v; for (auto &e : v) e--; return res; } template )> inline std::vector &operator+=(std::vector &v1, const std::vector &v2) { if (v2.size() > v1.size()) { v1.resize(v2.size()); } for (size_t i = 0; i < v2.size(); i++) { v1[i] += v2[i]; } return v1; } template )> inline std::vector operator+(const std::vector &v1, const std::vector &v2) { std::vector res(v1); return res += v2; } template )> inline std::vector &operator+=(std::vector &v, const U &u) { for (T &e : v) { e += u; } return v; } template )> inline std::vector operator+(const std::vector &v, const U &u) { std::vector res(v); return res += u; } template )> inline std::vector operator+(const U &u, const std::vector &v) { std::vector res(v); return res += u; } template )> inline std::vector &operator*=(std::vector &v1, const std::vector &v2) { if (v2.size() > v1.size()) { v1.resize(v2.size()); } for (size_t i = 0; i < v2.size(); i++) { v1[i] *= v2[i]; } for (size_t i = v2.size(); i < v1.size(); i++) { v1[i] *= U(0); } return v1; } template )> inline std::vector operator*(const std::vector &v1, const std::vector &v2) { std::vector res(v1); return res *= v2; } template )> inline std::vector &operator*=(std::vector &v, const U &u) { for (T &e : v) { e *= u; } return v; } template )> inline std::vector operator*(const std::vector &v, const U &u) { std::vector res(v); return res *= u; } template )> inline std::vector operator*(const U &u, const std::vector &v) { std::vector res(v); return res *= u; } template inline std::vector &assign(std::vector &v1, const std::vector &v2) { v1.assign(v2.begin(), v2.end()); return v1; } template inline std::vector &extend(std::vector &v1, const std::vector &v2) { v1.insert(v1.end(), v2.begin(), v2.end()); return v1; } template )> inline std::vector &operator|=(std::vector &v1, const std::vector &v2) { return extend(v1, v2); } template )> inline std::vector &operator|=(std::vector &v, const U &u) { std::vector w(v); v.clear(); for (int i = 0; i < u; i++) { extend(v, w); } return v; } template )> inline std::vector operator|(const std::vector &v, const U &u) { std::vector res(v); return res |= u; } template )> inline std::vector operator|(const U &u, const std::vector &v) { std::vector res(v); return res |= u; } template inline std::vector abs(const std::vector &v) { std::vector ret; ret.reserve(v.size()); for (const T &e : v) ret.push_back(std::abs(e)); return ret; } template std::vector partial_sum(const std::vector &v) { std::vector ret(v.size()); std::partial_sum(v.begin(), v.end(), ret.begin()); return ret; } #line 10 "/home/shogo314/cpp_include/sh-library/py/repr.hpp" #line 12 "/home/shogo314/cpp_include/sh-library/py/repr.hpp" namespace detail { /////////////////////////////////////////////////////////////////// /////////////////////////// declaration /////////////////////////// /////////////////////////////////////////////////////////////////// inline std::string type_str(const char*); inline std::string initializer_str(const char*); inline std::string repr(const char*); inline std::string type_str(const char&); inline std::string initializer_str(const char&); inline std::string repr(const char&); inline std::string type_str(const int&); inline std::string initializer_str(const int&); inline std::string repr(const int&); inline std::string type_str(const long&); inline std::string initializer_str(const long&); inline std::string repr(const long&); inline std::string type_str(const long long&); inline std::string initializer_str(const long long&); inline std::string repr(const long long&); inline std::string type_str(const unsigned int&); inline std::string initializer_str(const unsigned int&); inline std::string repr(const unsigned int&); inline std::string type_str(const unsigned long&); inline std::string initializer_str(const unsigned long&); inline std::string repr(const unsigned long&); inline std::string type_str(const unsigned long long&); inline std::string initializer_str(const unsigned long long&); inline std::string repr(const unsigned long long&); inline std::string type_str(const std::string&); inline std::string initializer_str(const std::string&); inline std::string repr(const std::string&); inline std::string type_str(const float&); inline std::string initializer_str(const float&); inline std::string repr(const float&); inline std::string type_str(const double&); inline std::string initializer_str(const double&); inline std::string repr(const double&); inline std::string type_str(const long double&); inline std::string initializer_str(const long double&); inline std::string repr(const long double&); template inline std::string type_str(const std::vector&); template inline std::string initializer_str(const std::vector&); template inline std::string repr(const std::vector&); template inline std::string type_str(const std::set&); template inline std::string initializer_str(const std::set&); template inline std::string repr(const std::set&); template inline std::string type_str(const std::pair&); template inline std::string initializer_str(const std::pair&); template inline std::string repr(const std::pair&); template inline std::string type_str(const std::map&); template inline std::string initializer_str(const std::map&); template inline std::string repr(const std::map&); template inline std::string type_str(const std::array&); template inline std::string initializer_str(const std::array&); template inline std::string repr(const std::array&); /////////////////////////////////////////////////////////////////// /////////////////////////// definition //////////////////////////// /////////////////////////////////////////////////////////////////// template , std::nullptr_t> = nullptr> inline std::string type_str(const T& t) { return "T"; } template , std::nullptr_t> = nullptr> inline std::string type_str(const T& t) { return t.type_str(); } template , std::nullptr_t> = nullptr> inline std::string initializer_str(const T& t) { return "{}"; } template , std::nullptr_t> = nullptr> inline std::string initializer_str(const T& t) { return t.initializer_str(); } template , std::nullptr_t> = nullptr> inline std::string repr(const T& t) { return detail::type_str(t) + detail::initializer_str(t); } template , std::nullptr_t> = nullptr> inline std::string repr(const T& t) { return t.repr(); } inline std::string type_str(const char*) { return "char*"; } inline std::string initializer_str(const char* t) { return "\"" + std::string(t) + "\""; } inline std::string repr(const char* t) { return detail::initializer_str(t); } inline std::string type_str(const char&) { return "char"; } inline std::string initializer_str(const char& t) { std::vector v(128, ""); v['\0'] = "\\0"; v['\a'] = "\\a"; v['\b'] = "\\b"; v['\f'] = "\\f"; v['\r'] = "\\r"; v['\n'] = "\\n"; v['\v'] = "\\v"; v['\''] = "\\'"; v['\\'] = "\\\\"; if (!v[t].empty()) return "'" + v[t] + "'"; if (32 <= t and t <= 126) return "'" + std::string{t} + "'"; return "'\\" + std::to_string(t / 64) + std::to_string(t / 8 % 8) + std::to_string(t % 8) + "'"; } inline std::string repr(const char& t) { return detail::initializer_str(t); } inline std::string type_str(const int&) { return "int"; } inline std::string initializer_str(const int& t) { return std::to_string(t); } inline std::string repr(const int& t) { return detail::initializer_str(t); } inline std::string type_str(const long&) { return "long"; } inline std::string initializer_str(const long& t) { return std::to_string(t) + "l"; } inline std::string repr(const long& t) { return detail::initializer_str(t); } inline std::string type_str(const long long&) { return "long long"; } inline std::string initializer_str(const long long& t) { return std::to_string(t) + "ll"; } inline std::string repr(const long long& t) { return detail::initializer_str(t); } inline std::string type_str(const unsigned int&) { return "unsigned int"; } inline std::string initializer_str(const unsigned int& t) { return std::to_string(t) + "u"; } inline std::string repr(const unsigned int& t) { return detail::initializer_str(t); } inline std::string type_str(const unsigned long&) { return "unsigned long"; } inline std::string initializer_str(const unsigned long& t) { return std::to_string(t) + "ul"; } inline std::string repr(const unsigned long& t) { return detail::initializer_str(t); } inline std::string type_str(const unsigned long long&) { return "unsigned long long"; } inline std::string initializer_str(const unsigned long long& t) { return std::to_string(t) + "ull"; } inline std::string repr(const unsigned long long& t) { return detail::initializer_str(t); } inline std::string type_str(const std::string&) { return "std::string"; } inline std::string initializer_str(const std::string& t) { return "\"" + t + "\""; } inline std::string repr(const std::string& t) { return detail::type_str(t) + detail::initializer_str(t); } inline std::string type_str(const float&) { return "float"; } inline std::string initializer_str(const float& t) { return std::to_string(t) + "f"; } inline std::string repr(const float& t) { return detail::initializer_str(t); } inline std::string type_str(const double&) { return "double"; } inline std::string initializer_str(const double& t) { return std::to_string(t); } inline std::string repr(const double& t) { return detail::initializer_str(t); } inline std::string type_str(const long double&) { return "long double"; } inline std::string initializer_str(const long double& t) { return std::to_string(t) + "l"; } inline std::string repr(const long double& t) { return detail::initializer_str(t); } template inline std::string type_str(const std::vector&) { T t; return "std::vector<" + detail::type_str(t) + ">"; } template inline std::string initializer_str(const std::vector& t) { std::string ret; ret += "{"; for (auto itr = t.begin(); itr != t.end(); itr++) { if (itr != t.begin()) ret += ", "; ret += detail::initializer_str(*itr); } ret += "}"; return ret; } template inline std::string repr(const std::vector& t) { return detail::type_str(t) + detail::initializer_str(t); } template inline std::string type_str(const std::set&) { T t; return "std::set<" + detail::type_str(t) + ">"; } template inline std::string initializer_str(const std::set& t) { std::string ret; ret += "{"; for (auto itr = t.begin(); itr != t.end(); itr++) { if (itr != t.begin()) ret += ", "; ret += detail::initializer_str(*itr); } ret += "}"; return ret; } template inline std::string repr(const std::set& t) { return detail::type_str(t) + detail::initializer_str(t); } template inline std::string type_str(const std::pair&) { T1 t1; T2 t2; return "std::pair<" + detail::type_str(t1) + ", " + detail::type_str(t2) + ">"; } template inline std::string initializer_str(const std::pair& t) { return "{" + detail::repr(t.first) + ", " + detail::repr(t.second) + "}"; } template inline std::string repr(const std::pair& t) { return detail::type_str(t) + detail::initializer_str(t); } template inline std::string type_str(const std::map&) { T1 t1; T2 t2; return "std::map<" + detail::type_str(t1) + ", " + detail::type_str(t2) + ">"; } template inline std::string initializer_str(const std::map& t) { std::string ret; ret += "{"; for (auto itr = t.begin(); itr != t.end(); itr++) { if (itr != t.begin()) ret += ", "; ret += "{"; ret += detail::initializer_str(itr->first); ret += ", "; ret += detail::initializer_str(itr->second); ret += "}"; } ret += "}"; return ret; } template inline std::string repr(const std::map& t) { return detail::type_str(t) + detail::initializer_str(t); } template inline std::string type_str(const std::array&) { T t; return "std::array<" + detail::type_str(t) + ", " + std::to_string(N) + ">"; } template inline std::string initializer_str(const std::array& t) { std::string ret; ret += "{"; for (auto itr = t.begin(); itr != t.end(); itr++) { if (itr != t.begin()) ret += ", "; ret += detail::initializer_str(*itr); } ret += "}"; return ret; } template inline std::string repr(const std::array& t) { return detail::type_str(t) + detail::initializer_str(t); } } // namespace detail template inline std::string type_str(const T& t) { return detail::type_str(t); } template inline std::string initializer_str(const T& t) { return detail::initializer_str(t); } template inline std::string repr(const T& t) { return detail::repr(t); } #define DEBUG(x) { std::cerr << #x << " = " << repr(x) << std::endl; } #line 4 "main.cpp" void solve() { LL(H, W, N, D); VAL(XY, N, 2); UnionFind uf(N); vvl g(H, vl(W, -1)); rep(i, N) { auto& [X, Y] = XY[i]; X--; Y--; g[X][Y] = i; } rep(i, N) { auto [X, Y] = XY[i]; reps(dx, -D, D + 1) reps(dy, -D, D + 1) { if (abs(dx) + abs(dy) > D) { continue; } if (dx == 0 and dy == 0) continue; if (not inrect(X + dx, Y + dy, H, W)) continue; if (g[X + dx][Y + dy] >= 0) { uf.merge(i, g[X + dx][Y + dy]); } } } ll min_ans, max_ans, ans = 0; for (const auto& a : uf.groups()) { if (a.size() > 1) ans++; } min_ans = max_ans = ans; rep2(x, y, H, W) { if (g[x][y] >= 0) continue; sl s; ll tmp = 0; reps(dx, -D, D + 1) reps(dy, -D, D + 1) { if (abs(dx) + abs(dy) > D) { continue; } if (dx == 0 and dy == 0) continue; if (not inrect(x + dx, y + dy, H, W)) continue; if (g[x + dx][y + dy] >= 0) { s.insert(uf.leader(g[x + dx][y + dy])); if (uf.size(g[x + dx][y + dy]) == 1) tmp++; } } if (s.empty()) continue; tmp = 1 - (s.size() - tmp); chmin(min_ans, ans + tmp); chmax(max_ans, ans + tmp); } print(min_ans, max_ans); } int main() { std::cin.tie(nullptr); std::ios_base::sync_with_stdio(false); solve(); }