結果

問題 No.2897 2集合間距離
ユーザー vjudge1vjudge1
提出日時 2024-09-25 15:28:32
言語 C++17(clang)
(17.0.6 + boost 1.83.0)
結果
AC  
実行時間 244 ms / 3,500 ms
コード長 910 bytes
コンパイル時間 2,767 ms
コンパイル使用メモリ 164,020 KB
実行使用メモリ 11,904 KB
最終ジャッジ日時 2024-09-25 15:28:38
合計ジャッジ時間 5,944 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 24 ms
8,320 KB
testcase_01 AC 23 ms
8,064 KB
testcase_02 AC 25 ms
8,248 KB
testcase_03 AC 23 ms
8,268 KB
testcase_04 AC 24 ms
8,276 KB
testcase_05 AC 24 ms
8,192 KB
testcase_06 AC 25 ms
8,192 KB
testcase_07 AC 24 ms
8,192 KB
testcase_08 AC 25 ms
8,064 KB
testcase_09 AC 25 ms
8,064 KB
testcase_10 AC 26 ms
8,412 KB
testcase_11 AC 27 ms
8,320 KB
testcase_12 AC 27 ms
8,520 KB
testcase_13 AC 27 ms
8,540 KB
testcase_14 AC 38 ms
9,216 KB
testcase_15 AC 41 ms
9,216 KB
testcase_16 AC 236 ms
11,904 KB
testcase_17 AC 244 ms
11,904 KB
testcase_18 AC 234 ms
11,856 KB
testcase_19 AC 231 ms
11,776 KB
testcase_20 AC 238 ms
11,864 KB
testcase_21 AC 220 ms
10,496 KB
testcase_22 AC 215 ms
9,952 KB
testcase_23 AC 214 ms
9,984 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<bits/stdc++.h>
using namespace std;
using pii = pair<int, int>;

const int MAXN = 200001, MAXV = 1000, dx[] = {1, -1, 0, 0}, dy[] = {0, 0, -1, 1};

int n, m, dist[MAXV][MAXV], ans = int(1e9);
bool vis[MAXV][MAXV];

int main() {
  //ios::sync_with_stdio(false), cin.tie(0), cout.tie(0);
  cin >> n;
  queue<pii> que;
  for(int i = 1, x, y; i <= n; ++i) {
    cin >> x >> y;
    vis[x][y] = 1;
    dist[x][y] = 0;
    que.push({x, y});
  }
  for(; !que.empty(); ) {
    auto [x, y] = que.front();
    que.pop();
    for(int d : {0, 1, 2, 3}) {
      int nx = x + dx[d], ny = y + dy[d];
      if(nx >= 0 && nx < 1000 && ny >= 0 && ny < 1000 && !vis[nx][ny]) {
        vis[nx][ny] = 1;
        dist[nx][ny] = dist[x][y] + 1;
        que.push({nx, ny});
      }
    }
  }
  cin >> m;
  for(int i = 1, x, y; i <= m; ++i) {
    cin >> x >> y;
    ans = min(ans, dist[x][y]);
  }
  cout << ans;
  return 0;
}
0