結果

問題 No.2897 2集合間距離
ユーザー n0ma_run0ma_ru
提出日時 2024-09-21 15:40:12
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 201 ms / 3,500 ms
コード長 1,069 bytes
コンパイル時間 2,034 ms
コンパイル使用メモリ 211,556 KB
実行使用メモリ 14,080 KB
最終ジャッジ日時 2024-09-21 15:40:18
合計ジャッジ時間 5,118 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 20 ms
7,296 KB
testcase_01 AC 21 ms
7,424 KB
testcase_02 AC 21 ms
7,296 KB
testcase_03 AC 27 ms
7,296 KB
testcase_04 AC 23 ms
7,424 KB
testcase_05 AC 22 ms
7,424 KB
testcase_06 AC 22 ms
7,424 KB
testcase_07 AC 20 ms
7,296 KB
testcase_08 AC 21 ms
7,296 KB
testcase_09 AC 27 ms
7,296 KB
testcase_10 AC 25 ms
7,424 KB
testcase_11 AC 24 ms
7,552 KB
testcase_12 AC 28 ms
7,680 KB
testcase_13 AC 30 ms
7,680 KB
testcase_14 AC 44 ms
8,320 KB
testcase_15 AC 44 ms
8,576 KB
testcase_16 AC 200 ms
14,080 KB
testcase_17 AC 201 ms
14,080 KB
testcase_18 AC 197 ms
14,080 KB
testcase_19 AC 201 ms
14,080 KB
testcase_20 AC 201 ms
14,080 KB
testcase_21 AC 193 ms
12,416 KB
testcase_22 AC 173 ms
12,032 KB
testcase_23 AC 187 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;
#define MAX (1000)
int N,M;
vector<pair<int,int>> P,Q;
int main() {
    cin >> N;
    P.resize(N);
    for (auto& [x,y] : P) cin >> x >> y;
    cin >> M;
    Q.resize(M);
    for (auto& [x,y] : Q) cin >> x >> y;

    vector<vector<int>> dis(MAX, vector<int>(MAX,1e9));
    queue<pair<int,int>> q;
    for (auto [x,y] : P) {
        q.emplace(x,y);
        dis[y][x] = 0;
    }
    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 < MAX && 0 <= ny && ny < MAX)) 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] : Q) {
        ans = min(ans, dis[y][x]);
    }
    cout << ans << '\n';
}
0