結果

問題 No.2897 2集合間距離
ユーザー vjudge1vjudge1
提出日時 2024-09-25 14:59:01
言語 C++23
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 1,004 bytes
コンパイル時間 718 ms
コンパイル使用メモリ 84,488 KB
実行使用メモリ 20,772 KB
最終ジャッジ日時 2024-09-25 14:59:07
合計ジャッジ時間 3,261 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 21 ms
19,304 KB
testcase_01 AC 22 ms
19,200 KB
testcase_02 AC 22 ms
19,556 KB
testcase_03 WA -
testcase_04 WA -
testcase_05 WA -
testcase_06 WA -
testcase_07 WA -
testcase_08 WA -
testcase_09 WA -
testcase_10 WA -
testcase_11 WA -
testcase_12 WA -
testcase_13 WA -
testcase_14 WA -
testcase_15 WA -
testcase_16 WA -
testcase_17 WA -
testcase_18 WA -
testcase_19 WA -
testcase_20 WA -
testcase_21 AC 85 ms
20,660 KB
testcase_22 AC 93 ms
20,572 KB
testcase_23 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <vector>

using namespace std;

const int MAXN = 2e5 + 5, MAXV = 2e3 + 3;

int n, m, a[MAXN], b[MAXN], c[MAXV][MAXV];

bool Check(int dis) {
  for (int i = 1; i <= n; i++) {
    int lx = max(1, a[i] - dis), rx = min(2000, a[i] + dis);
    int ly = max(1, b[i] - dis), ry = min(2000, b[i] + dis);
    if (c[rx][ry] - c[lx - 1][ry] - c[rx][ly - 1] + c[lx - 1][rx - 1] > 0) {
      return 1;
    }
  }
  return 0;
}

int main() {
  ios::sync_with_stdio(0), cin.tie(0);
  cin >> n;
  for (int i = 1, x, y; i <= n; i++) {
    cin >> x >> y;
    a[i] = x + y + 1, b[i] = x - y + 1001;
  }
  cin >> m;
  for (int i = 1, x, y; i <= m; i++) {
    cin >> x >> y;
    c[x + y + 1][x - y + 1001]++;
  }
  for (int i = 1; i < MAXV; i++) {
    for (int j = 1; j < MAXV; j++) {
      c[i][j] += c[i][j - 1] + c[i - 1][j] - c[i - 1][j - 1];
    }
  }
  int l = 0, r = MAXV;
  while (l < r) {
    int mid = (l + r) >> 1;
    Check(mid) ? r = mid : l = mid + 1;
  }
  cout << l;
  return 0;
}
0