結果

問題 No.2897 2集合間距離
ユーザー vjudge1vjudge1
提出日時 2024-09-25 15:21:54
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 926 bytes
コンパイル時間 2,126 ms
コンパイル使用メモリ 205,608 KB
実行使用メモリ 14,080 KB
最終ジャッジ日時 2024-09-25 15:22:02
合計ジャッジ時間 4,634 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 29 ms
7,424 KB
testcase_01 AC 28 ms
7,424 KB
testcase_02 AC 28 ms
7,552 KB
testcase_03 AC 33 ms
7,552 KB
testcase_04 AC 32 ms
7,552 KB
testcase_05 AC 33 ms
7,552 KB
testcase_06 WA -
testcase_07 AC 32 ms
7,552 KB
testcase_08 AC 31 ms
7,552 KB
testcase_09 AC 32 ms
7,424 KB
testcase_10 AC 32 ms
7,552 KB
testcase_11 AC 32 ms
7,424 KB
testcase_12 AC 37 ms
7,808 KB
testcase_13 AC 39 ms
7,680 KB
testcase_14 AC 42 ms
8,576 KB
testcase_15 AC 45 ms
8,704 KB
testcase_16 AC 114 ms
14,076 KB
testcase_17 AC 113 ms
14,080 KB
testcase_18 AC 113 ms
14,080 KB
testcase_19 AC 115 ms
14,080 KB
testcase_20 AC 116 ms
13,952 KB
testcase_21 AC 101 ms
12,368 KB
testcase_22 AC 97 ms
12,160 KB
testcase_23 AC 100 ms
12,360 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>

using namespace std;
using pii = pair<int, int>;

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

const int dx[] = {1, 0, -1, 0};
const int dy[] = {0, 1, 0, -1};

int n, x[N], y[N], m, z[N], w[N], d[M][M], ans = 2 * M;
queue<pii> que;

void Record(int x, int y, int dis) {
    if (x < 0 || x >= M || y < 0 || y >= M || d[x][y]) return ;
    d[x][y] = dis, que.push({x, y});
}

void bfs() {
    for (int i = 1; i <= n; i++) Record(x[i], y[i], 1);
    while (!que.empty()) {
        auto [x, y] = que.front(); que.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; i <= n; i++) cin >> x[i] >> y[i];
    cin >> m;
    for (int i = 1; i <= n; i++) cin >> z[i] >> w[i];
    bfs();
    for (int i = 1; i <= m; i++) ans = min(ans, d[z[i]][w[i]] - 1);
    cout << ans;
    return 0;
}
0