結果

問題 No.2897 2集合間距離
ユーザー vjudge1vjudge1
提出日時 2024-09-25 15:11:16
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 3,416 ms / 3,500 ms
コード長 985 bytes
コンパイル時間 1,885 ms
コンパイル使用メモリ 175,016 KB
実行使用メモリ 29,636 KB
最終ジャッジ日時 2024-09-25 15:11:45
合計ジャッジ時間 8,275 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 13 ms
26,428 KB
testcase_01 AC 13 ms
24,064 KB
testcase_02 AC 13 ms
23,936 KB
testcase_03 AC 14 ms
23,936 KB
testcase_04 AC 14 ms
23,936 KB
testcase_05 AC 13 ms
23,936 KB
testcase_06 AC 14 ms
23,936 KB
testcase_07 AC 14 ms
23,808 KB
testcase_08 AC 14 ms
24,064 KB
testcase_09 AC 14 ms
24,064 KB
testcase_10 AC 15 ms
23,936 KB
testcase_11 AC 15 ms
23,936 KB
testcase_12 AC 28 ms
24,064 KB
testcase_13 AC 31 ms
24,064 KB
testcase_14 AC 175 ms
24,192 KB
testcase_15 AC 172 ms
24,192 KB
testcase_16 AC 3,131 ms
29,364 KB
testcase_17 AC 3,119 ms
29,404 KB
testcase_18 AC 3,239 ms
29,376 KB
testcase_19 AC 3,287 ms
29,528 KB
testcase_20 AC 3,284 ms
29,492 KB
testcase_21 AC 3,302 ms
29,388 KB
testcase_22 AC 2,997 ms
29,368 KB
testcase_23 AC 3,416 ms
29,636 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>

using namespace std;

#define int long long

const int N = 2e5 + 5, M = 1e3 + 5;

int n, x[N], y[N], m, ans = 1e18, l[M][M], r[M][M];

vector<int> v[N];

signed main() {
  for (int i = 0; i <= 1000; i++) {
    v[i].push_back(-1e18);
    v[i].push_back(1e18);
  }
  cin >> n;
  for (int i = 1; i <= n; i++) {
    cin >> x[i] >> y[i];
  }
  cin >> m;
  for (int i = 1, _x, _y; i <= m; i++) {
    cin >> _x >> _y;
    v[_x].push_back(_y);
  }
  for (int i = 0; i <= 1000; i++) {
    sort(v[i].begin(), v[i].end());
    for (int j = 0; j <= 1000; j++) {
      auto tmp = upper_bound(v[i].begin(), v[i].end(), j) - v[i].begin() - 1;
      l[i][j] = v[i][tmp];
      tmp = lower_bound(v[i].begin(), v[i].end(), j) - v[i].begin();
      r[i][j] = v[i][tmp];
    }
  }
  for (int i = 1; i <= n; i++) {
    for (int j = 0; j <= 1000; j++) {
      ans = min(ans, abs(x[i] - j) + min(y[i] - l[j][y[i]], r[j][y[i]] - y[i]));
    }
  }
  cout << ans;
  return 0;
}
/*

*/
0