#include // created [2019/12/23] 12:51:08 #pragma GCC diagnostic ignored "-Wsign-compare" #pragma GCC diagnostic ignored "-Wsign-conversion" using i32 = int32_t; using i64 = int64_t; using u32 = uint32_t; using u64 = uint64_t; using uint = unsigned int; using usize = std::size_t; using ll = long long; using ull = unsigned long long; using ld = long double; template using arr = T (&)[n]; template using c_arr = const T (&)[n]; template constexpr T popcount(const T u) { return u ? static_cast(__builtin_popcountll(static_cast(u))) : static_cast(0); } template constexpr T log2p1(const T u) { return u ? static_cast(64 - __builtin_clzll(static_cast(u))) : static_cast(0); } template constexpr T msbp1(const T u) { return log2p1(u); } template constexpr T lsbp1(const T u) { return __builtin_ffsll(u); } template constexpr T clog(const T u) { return u ? log2p1(u - 1) : static_cast(u); } template constexpr bool ispow2(const T u) { return u and (static_cast(u) & static_cast(u - 1)) == 0; } template constexpr T ceil2(const T u) { return static_cast(1) << clog(u); } template constexpr T floor2(const T u) { return u == 0 ? static_cast(0) : static_cast(1) << (log2p1(u) - 1); } template constexpr bool btest(const T mask, const usize ind) { return static_cast((static_cast(mask) >> ind) & static_cast(1)); } template void bset(T& mask, const usize ind) { mask |= (static_cast(1) << ind); } template void breset(T& mask, const usize ind) { mask &= ~(static_cast(1) << ind); } template void bflip(T& mask, const usize ind) { mask ^= (static_cast(1) << ind); } template void bset(T& mask, const usize ind, const bool b) { (b ? bset(mask, ind) : breset(mask, ind)); } template constexpr T bcut(const T mask, const usize ind) { return ind == 0 ? static_cast(0) : static_cast((static_cast(mask) << (64 - ind)) >> (64 - ind)); } template bool chmin(T& a, const T& b) { return (a > b ? a = b, true : false); } template bool chmax(T& a, const T& b) { return (a < b ? a = b, true : false); } constexpr unsigned int mod = 1000000007; template constexpr T inf_v = std::numeric_limits::max() / 4; template constexpr Real pi_v = Real{3.141592653589793238462643383279502884}; auto mfp = [](auto&& f) { return [=](auto&&... args) { return f(f, std::forward(args)...); }; }; template T in() { T v; return std::cin >> v, v; } template T in_v(typename std::enable_if<(i == n), c_arr>::type) { return in(); } template auto in_v(typename std::enable_if<(i < n), c_arr>::type& szs) { const usize s = (usize)szs[i]; std::vector(szs))> ans(s); for (usize j = 0; j < s; j++) { ans[j] = in_v(szs); } return ans; } template auto in_v(c_arr szs) { return in_v(szs); } template auto in_t() { return std::tuple...>{in()...}; } struct io_init { io_init() { std::cin.tie(nullptr), std::ios::sync_with_stdio(false); std::cout << std::fixed << std::setprecision(20); } void clear() { std::cin.tie(), std::ios::sync_with_stdio(true); } } io_setting; template int out(const T& v) { return std::cout << v, 0; } template int out(const std::vector& v) { for (usize i = 0; i < v.size(); i++) { if (i > 0) { std::cout << ' '; } out(v[i]); } return std::cout << "\n", 0; } template int out(const std::pair& v) { return out(v.first), std::cout << ' ', out(v.second), 0; } template int out(const T& v, const Args... args) { return out(v), std::cout << ' ', out(args...), 0; } template int outln(const Args... args) { return out(args...), std::cout << '\n', 0; } template void outel(const Args... args) { return out(args...), std::cout << std::endl, 0; } # define SHOW(...) static_cast(0) constexpr ull TEN(const usize n) { return n == 0 ? 1ULL : TEN(n - 1) * 10ULL; } template auto make_v(typename std::enable_if<(i == n), c_arr>::type, const T& v = T{}) { return v; } template auto make_v(typename std::enable_if<(i < n), c_arr>::type szs, const T& v = T{}) { const usize s = (usize)szs[i]; return std::vector(szs, v))>(s, make_v(szs, v)); } template auto make_v(c_arr szs, const T& t = T{}) { return make_v(szs, t); } int main() { using pll = std::pair; const auto W = in(), H = in(); auto enc = [&](ll x, ll y) -> pll { return pll{x + y, y - x}; }; auto dec = [&](ll x, ll y) -> pll { return std::abs(x + y) % 2 == 1 ? pll{-1, -1} : pll{(x - y) / 2, (x + y) / 2}; }; auto L1 = [&](ll x1, ll y1, ll x2, ll y2) { return std::abs(x1 - x2) + std::abs(y1 - y2); }; auto Linf = [&](ll x1, ll y1, ll x2, ll y2) { return std::max(std::abs(x1 - x2), std::abs(y1 - y2)); }; auto is_in = [&](ll x, ll y) { return 1 <= y and y <= H and 1 <= x and x <= W; }; const auto N = in(); std::vector rxs(N), rys(N); for (int i = 0; i < N; i++) { rxs[i] = in(), rys[i] = in(); } { std::set parity; for (int i = 0; i < N; i++) { parity.insert(std::abs(rxs[i] + rys[i]) % 2); } if (parity.size() == 2) { return outln(0); } } std::vector xs(N), ys(N); for (int i = 0; i < N; i++) { std::tie(xs[i], ys[i]) = enc(rxs[i], rys[i]); } auto is_ok = [&](ll x, ll y) { if (not is_in(x, y)) { return false; } std::set ds; for (int i = 0; i < N; i++) { ds.insert(L1(rxs[i], rys[i], x, y)); } return ds.size() == 1; }; SHOW(xs, ys); const ll ym = *std::min_element(ys.begin(), ys.end()); const ll xm = *std::min_element(xs.begin(), xs.end()); const ll yM = *std::max_element(ys.begin(), ys.end()); const ll xM = *std::max_element(xs.begin(), xs.end()); if (xm == xM) { // AC ll p1 = xm * 2 + (yM - ym), q1 = ym + yM; ll p2 = xm * 2 - (yM - ym), q2 = ym + yM; if (p1 % 2 == 1 or q1 % 2 == 1) { return outln(0); } p1 /= 2, q1 /= 2; p2 /= 2, q2 /= 2; std::tie(p1, q1) = dec(p1, q1); std::tie(p2, q2) = dec(p2, q2); if (not is_ok(p1, q1) or not is_ok(p2, q2)) { return outln(0); } SHOW(p1, q1), SHOW(p2, q2); ll ans = (W - p1 + 1) * (H - q1 + 1) + p2 * q2; if (N == 2) { ans += (p1 - p2 - 1); } return outln(ans); } if (ym == yM) { // AC ll p1 = xm + xM, q1 = ym * 2 - (xM - xm); ll p2 = xm + xM, q2 = ym * 2 + (xM - xm); if (p1 % 2 == 1 or q1 % 2 == 1) { return outln(0); } p1 /= 2, q1 /= 2; p2 /= 2, q2 /= 2; std::tie(p1, q1) = dec(p1, q1); std::tie(p2, q2) = dec(p2, q2); if (not is_ok(p1, q1) or not is_ok(p2, q2)) { return outln(0); } SHOW(p1, q1), SHOW(p2, q2); ll ans = (W - p1 + 1) * q1 + p2 * (H - q2 + 1); if (N == 2) { ans += (p1 - p2 - 1); } return outln(ans); } if (xM - xm == yM - ym) { // AC ll p = xm + xM, q = ym + yM; if (p % 2 == 1 or q % 2 == 1) { return outln(0); } p /= 2, q /= 2; std::tie(p, q) = dec(p, q); if (not is_ok(p, q)) { return outln(0); } ll ans = 1; constexpr ll dx[] = {-1, -1, -1, 0, 0, 1, 1, 1}; constexpr ll dy[] = {-1, 0, 1, -1, 1, -1, 0, 1}; for (int i = 0; i < 8; i++) { ll inf = 0, sup = H + W; while (sup - inf > 1) { const ll mid = (inf + sup) / 2; const ll np = p + mid * dx[i], nq = q + mid * dy[i]; (is_ok(np, nq) ? inf : sup) = mid; } ans += inf; } return outln(ans); } else if (xM - xm < yM - ym) { ll p1 = xm * 2 + (yM - ym), q1 = ym + yM; ll p2 = xM * 2 - (yM - ym), q2 = ym + yM; if (p1 % 2 == 1 or q1 % 2 == 1) { return outln(0); } p1 /= 2, q1 /= 2; p2 /= 2, q2 /= 2; std::tie(p1, q1) = dec(p1, q1); std::tie(p2, q2) = dec(p2, q2); ll ans = 0; if (is_ok(p1, q1)) { ans++; ll inf = 0, sup = H + W; while (sup - inf > 1) { const ll mid = (inf + sup) / 2; const ll np1 = p1, nq1 = q1 + mid; (is_ok(np1, nq1) ? inf : sup) = mid; } ans += inf; inf = 0, sup = H + W; while (sup - inf > 1) { const ll mid = (inf + sup) / 2; const ll np1 = p1 + mid, nq1 = q1; (is_ok(np1, nq1) ? inf : sup) = mid; } ans += inf; } if (is_ok(p2, q2)) { ans++; ll inf = 0, sup = H + W; while (sup - inf > 1) { const ll mid = (inf + sup) / 2; const ll np2 = p2, nq2 = q2 - mid; (is_ok(np2, nq2) ? inf : sup) = mid; } ans += inf; inf = 0, sup = H + W; while (sup - inf > 1) { const ll mid = (inf + sup) / 2; const ll np2 = p2 - mid, nq2 = q2; (is_ok(np2, nq2) ? inf : sup) = mid; } ans += inf; } if (is_ok(p1, q1) and is_ok(p2, q2)) { ll inf = 0, sup = H + W; while (sup - inf > 1) { const ll mid = (inf + sup) / 2; const ll np = p1 - mid, nq = q1 - mid; (is_ok(np, nq) ? inf : sup) = mid; } ans += inf - 1; } return outln(ans); } else { ll p1 = xm + xM, q1 = yM * 2 - (xM - xm); ll p2 = xm + xM, q2 = ym * 2 + (xM - xm); if (p1 % 2 == 1 or q1 % 2 == 1) { return outln(0); } p1 /= 2, q1 /= 2; p2 /= 2, q2 /= 2; std::tie(p1, q1) = dec(p1, q1); std::tie(p2, q2) = dec(p2, q2); ll ans = 0; if (is_ok(p1, q1)) { ans++; ll inf = 0, sup = H + W; while (sup - inf > 1) { const ll mid = (inf + sup) / 2; const ll np1 = p1 + mid, nq1 = q1; (is_ok(np1, nq1) ? inf : sup) = mid; } ans += inf; inf = 0, sup = H + W; while (sup - inf > 1) { const ll mid = (inf + sup) / 2; const ll np1 = p1, nq1 = q1 - mid; (is_ok(np1, nq1) ? inf : sup) = mid; } ans += inf; } if (is_ok(p2, q2)) { ans++; ll inf = 0, sup = H + W; while (sup - inf > 1) { const ll mid = (inf + sup) / 2; const ll np2 = p2 - mid, nq2 = q2; (is_ok(np2, nq2) ? inf : sup) = mid; } ans += inf; inf = 0, sup = H + W; while (sup - inf > 1) { const ll mid = (inf + sup) / 2; const ll np2 = p2, nq2 = q2 + mid; (is_ok(np2, nq2) ? inf : sup) = mid; } ans += inf; } if (is_ok(p1, q1) and is_ok(p2, q2)) { ll inf = 0, sup = H + W; while (sup - inf > 1) { const ll mid = (inf + sup) / 2; const ll np = p1 - mid, nq = q1 + mid; (is_ok(np, nq) ? inf : sup) = mid; } ans += inf - 1; } return outln(ans); } return 0; }