結果

問題 No.2897 2集合間距離
ユーザー n0ma_run0ma_ru
提出日時 2024-10-08 21:23:57
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 230 ms / 3,500 ms
コード長 1,114 bytes
コンパイル時間 2,345 ms
コンパイル使用メモリ 212,644 KB
実行使用メモリ 14,208 KB
最終ジャッジ日時 2024-10-08 21:24:05
合計ジャッジ時間 6,996 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 28 ms
7,424 KB
testcase_01 AC 28 ms
7,424 KB
testcase_02 AC 28 ms
7,424 KB
testcase_03 AC 31 ms
7,424 KB
testcase_04 AC 32 ms
7,424 KB
testcase_05 AC 31 ms
7,424 KB
testcase_06 AC 30 ms
7,424 KB
testcase_07 AC 29 ms
7,424 KB
testcase_08 AC 31 ms
7,424 KB
testcase_09 AC 30 ms
7,424 KB
testcase_10 AC 34 ms
7,552 KB
testcase_11 AC 33 ms
7,424 KB
testcase_12 AC 38 ms
7,680 KB
testcase_13 AC 39 ms
7,680 KB
testcase_14 AC 48 ms
8,316 KB
testcase_15 AC 51 ms
8,704 KB
testcase_16 AC 226 ms
14,208 KB
testcase_17 AC 227 ms
14,080 KB
testcase_18 AC 230 ms
14,080 KB
testcase_19 AC 226 ms
14,080 KB
testcase_20 AC 223 ms
14,080 KB
testcase_21 AC 208 ms
12,544 KB
testcase_22 AC 200 ms
12,032 KB
testcase_23 AC 210 ms
12,160 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
using ll = long long;
#define ALL(v) v.begin(),v.end()
#define dbg(x) cerr << #x << ": " << (x) << endl;
int n,m;
int siz = 1e3;
vector<pair<int,int>> xy, wz;
int main() {
    cin >> n;
    xy.resize(n);
    for (auto& [x,y] : xy) {
        cin >> x >> y;
    }
    cin >> m;
    wz.resize(m);
    for (auto& [x,y] : wz) {
        cin >> x >> y;
    }
    vector<vector<int>> dis(siz, vector<int>(siz, 1e9));
    queue<pair<int,int>> q;
    for (auto [x,y] : xy) {
        dis[y][x] = 0;
        q.emplace(x,y);
    }
    int dx[] = {-1,0,1,0,-1};
    while (q.size()) {
        auto [x,y] = q.front();
        q.pop();
        for (int i = 0; i < 4; ++i) {
            int nx = x + dx[i];
            int ny = y + dx[i+1];
            if (!(0 <= nx && nx < siz && 0 <= ny && ny < siz)) continue;
            if (dis[ny][nx] > dis[y][x] + 1) {
                dis[ny][nx] = dis[y][x] + 1;
                q.emplace(nx, ny);
            }
        }
    }
    int ans = 1e9;
    for (auto [x,y] : wz) {
        ans = min(ans, dis[y][x]);
    }
    cout << ans << '\n';
}
0