結果

問題 No.2897 2集合間距離
ユーザー vjudge1vjudge1
提出日時 2024-09-25 15:26:34
言語 C++23
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 122 ms / 3,500 ms
コード長 849 bytes
コンパイル時間 1,159 ms
コンパイル使用メモリ 92,628 KB
実行使用メモリ 11,008 KB
最終ジャッジ日時 2024-09-25 15:26:38
合計ジャッジ時間 3,333 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 22 ms
7,296 KB
testcase_01 AC 22 ms
7,424 KB
testcase_02 AC 22 ms
7,296 KB
testcase_03 AC 23 ms
7,296 KB
testcase_04 AC 24 ms
7,424 KB
testcase_05 AC 24 ms
7,296 KB
testcase_06 AC 24 ms
7,296 KB
testcase_07 AC 23 ms
7,296 KB
testcase_08 AC 24 ms
7,296 KB
testcase_09 AC 23 ms
7,296 KB
testcase_10 AC 27 ms
7,424 KB
testcase_11 AC 27 ms
7,552 KB
testcase_12 AC 32 ms
7,680 KB
testcase_13 AC 33 ms
7,680 KB
testcase_14 AC 40 ms
8,448 KB
testcase_15 AC 43 ms
8,448 KB
testcase_16 AC 121 ms
10,880 KB
testcase_17 AC 119 ms
11,008 KB
testcase_18 AC 120 ms
11,008 KB
testcase_19 AC 122 ms
10,752 KB
testcase_20 AC 118 ms
10,880 KB
testcase_21 AC 102 ms
9,344 KB
testcase_22 AC 94 ms
9,216 KB
testcase_23 AC 105 ms
9,088 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <vector>
#include <queue>

using namespace std;

const int MAXN = 2e5 + 5, MAXV = 1e3 + 3;
const int dx[4] = {1, 0, -1, 0}, dy[4] = {0, 1, 0, -1};

queue<pair<int, int>> q;
int n, m, ans = 3000, a[MAXN], b[MAXN], d[MAXV][MAXV];

void Record(int x, int y, int w) {
  if (x >= 0 && y >= 0 && x <= 1000 && y <= 1000 && !d[x][y]) {
    d[x][y] = w, q.push({x, y});
  }
}

void bfs() {
  while (!q.empty()) {
    auto [x, y] = q.front(); q.pop();
    for (int i = 0; i < 4; i++) {
      Record(x + dx[i], y + dy[i], d[x][y] + 1);
    }
  }
}

int main() {
  ios::sync_with_stdio(0), cin.tie(0);
  cin >> n;
  for (int i = 1, x, y; i <= n; i++) {
    cin >> x >> y, Record(x, y, 1);
  }
  cin >> m, bfs();
  for (int i = 1, x, y; i <= m; i++) {
    cin >> x >> y, ans = min(ans, d[x][y]);
  }
  cout << ans - 1;
  return 0;
}
0