結果

問題 No.2897 2集合間距離
ユーザー 👑 emthrmemthrm
提出日時 2024-09-20 21:56:02
言語 C++23
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 168 ms / 3,500 ms
コード長 3,292 bytes
コンパイル時間 3,288 ms
コンパイル使用メモリ 257,208 KB
実行使用メモリ 37,760 KB
最終ジャッジ日時 2024-09-20 21:56:08
合計ジャッジ時間 6,335 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 2 ms
5,376 KB
testcase_02 AC 2 ms
5,376 KB
testcase_03 AC 11 ms
11,136 KB
testcase_04 AC 17 ms
14,976 KB
testcase_05 AC 15 ms
14,080 KB
testcase_06 AC 17 ms
14,592 KB
testcase_07 AC 14 ms
13,056 KB
testcase_08 AC 28 ms
18,688 KB
testcase_09 AC 28 ms
19,456 KB
testcase_10 AC 49 ms
27,136 KB
testcase_11 AC 68 ms
29,952 KB
testcase_12 AC 84 ms
32,640 KB
testcase_13 AC 76 ms
32,256 KB
testcase_14 AC 84 ms
33,920 KB
testcase_15 AC 84 ms
34,432 KB
testcase_16 AC 149 ms
37,632 KB
testcase_17 AC 160 ms
37,760 KB
testcase_18 AC 145 ms
37,632 KB
testcase_19 AC 160 ms
37,632 KB
testcase_20 AC 152 ms
37,632 KB
testcase_21 AC 151 ms
37,760 KB
testcase_22 AC 168 ms
37,760 KB
testcase_23 AC 155 ms
37,632 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
#define FOR(i,m,n) for(int i=(m);i<(n);++i)
#define REP(i,n) FOR(i,0,n)
using ll = long long;
constexpr int INF = 0x3f3f3f3f;
constexpr long long LINF = 0x3f3f3f3f3f3f3f3fLL;
constexpr double EPS = 1e-8;
constexpr int MOD = 998244353;
// constexpr int MOD = 1000000007;
constexpr int DY4[]{1, 0, -1, 0}, DX4[]{0, -1, 0, 1};
constexpr int DY8[]{1, 1, 0, -1, -1, -1, 0, 1};
constexpr int DX8[]{0, -1, -1, -1, 0, 1, 1, 1};
template <typename T, typename U>
inline bool chmax(T& a, U b) { return a < b ? (a = b, true) : false; }
template <typename T, typename U>
inline bool chmin(T& a, U b) { return a > b ? (a = b, true) : false; }
struct IOSetup {
  IOSetup() {
    std::cin.tie(nullptr);
    std::ios_base::sync_with_stdio(false);
    std::cout << fixed << setprecision(20);
  }
} iosetup;

template <typename T>
struct CumulativeSum2D {
  explicit CumulativeSum2D(const int h, const int w)
      : CumulativeSum2D(std::vector<std::vector<T>>(h, std::vector<T>(w, 0))) {}

  template <typename U>
  explicit CumulativeSum2D(const std::vector<std::vector<U>>& a)
      : is_built(false), h(a.size()), w(a.front().size()),
        data(h + 1, std::vector<T>(w + 1, 0)) {
    for (int i = 0; i < h; ++i) {
      std::copy(a[i].begin(), a[i].end(), std::next(data[i + 1].begin()));
    }
  }

  void add(const int y, const int x, const T val) {
    assert(!is_built);
    data[y + 1][x + 1] += val;
  }

  void build() {
    assert(!is_built);
    is_built = true;
    for (int i = 0; i < h; ++i) {
      std::partial_sum(data[i + 1].begin(), data[i + 1].end(),
                       data[i + 1].begin());
    }
    for (int j = 1; j <= w; ++j) {
      for (int i = 1; i < h; ++i) {
        data[i + 1][j] += data[i][j];
      }
    }
  }

  T query(const int y1, const int x1, const int y2, const int x2) const {
    assert(is_built);
    return y1 > y2 || x1 > x2 ? 0 : data[y2 + 1][x2 + 1] - data[y2 + 1][x1]
                                    - data[y1][x2 + 1] + data[y1][x1];
  }

 private:
  bool is_built;
  const int h, w;
  std::vector<std::vector<T>> data;
};

int main() {
  int n; cin >> n;
  vector<int> x(n), y(n);
  REP(i, n) {
    int x_i, y_i; cin >> x_i >> y_i;
    x[i] = x_i - y_i;
    y[i] = x_i + y_i;
  }
  int m; cin >> m;
  vector<int> z(m), w(m);
  REP(i, m) {
    int z_i, w_i; cin >> z_i >> w_i;
    z[i] = z_i - w_i;
    w[i] = z_i + w_i;
  }
  {
    const int x_min = min(ranges::min(x), ranges::min(z));
    REP(i, n) x[i] -= x_min;
    REP(i, m) z[i] -= x_min;
  }
  {
    const int y_min = min(ranges::min(y), ranges::min(w));
    REP(i, n) y[i] -= y_min;
    REP(i, m) w[i] -= y_min;
  }
  const int xr = max(ranges::max(x), ranges::max(z));
  const int yr = max(ranges::max(y), ranges::max(w));
  CumulativeSum2D<int> cs(xr + 1, yr + 1);
  REP(i, n) cs.add(x[i], y[i], 1);
  cs.build();
  int lb = -1, ub = abs(x.front() - z.front()) + abs(y.front() - w.front());
  while (ub - lb > 1) {
    const int l = midpoint(lb, ub);
    bool exists = false;
    REP(i, m) {
      const int num = cs.query(max(z[i] - l, 0), max(w[i] - l, 0), min(z[i] + l, xr), min(w[i] + l, yr));
      if (num > 0) {
        exists = true;
        break;
      }
    }
    (exists ? ub : lb) = l;
  }
  cout << ub << '\n';
  return 0;
}
0