結果

問題 No.2897 2集合間距離
ユーザー srjywrdnprktsrjywrdnprkt
提出日時 2024-11-13 15:43:43
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 129 ms / 3,500 ms
コード長 1,060 bytes
コンパイル時間 2,434 ms
コンパイル使用メモリ 211,664 KB
実行使用メモリ 11,008 KB
最終ジャッジ日時 2024-11-13 15:43:50
合計ジャッジ時間 6,351 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 21 ms
7,296 KB
testcase_01 AC 21 ms
7,296 KB
testcase_02 AC 21 ms
7,424 KB
testcase_03 AC 22 ms
7,296 KB
testcase_04 AC 23 ms
7,424 KB
testcase_05 AC 23 ms
7,296 KB
testcase_06 AC 22 ms
7,296 KB
testcase_07 AC 22 ms
7,424 KB
testcase_08 AC 25 ms
7,424 KB
testcase_09 AC 24 ms
7,424 KB
testcase_10 AC 27 ms
7,552 KB
testcase_11 AC 29 ms
7,552 KB
testcase_12 AC 31 ms
7,680 KB
testcase_13 AC 33 ms
7,808 KB
testcase_14 AC 39 ms
8,320 KB
testcase_15 AC 41 ms
8,320 KB
testcase_16 AC 128 ms
11,008 KB
testcase_17 AC 129 ms
11,008 KB
testcase_18 AC 114 ms
11,008 KB
testcase_19 AC 115 ms
11,008 KB
testcase_20 AC 119 ms
11,008 KB
testcase_21 AC 111 ms
9,600 KB
testcase_22 AC 102 ms
8,960 KB
testcase_23 AC 99 ms
9,216 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
//#include <atcoder/modint>

using namespace std;
//using namespace atcoder;
using ll = long long;
//using mint = modint998244353;

int main(){
    cin.tie(nullptr);
    ios_base::sync_with_stdio(false);

    int N, x, y, ans=1e9;
    cin >> N;
    queue<pair<int, int>> que;
    vector dist(1000, vector<int>(1000, 1e9));
    for (int i=0; i<N; i++){
        cin >> x >> y;
        dist[x][y] = 0;
        que.push({x, y});
    }
    auto f=[&](int i, int j){
        return 0<=i && i<1000 && 0<=j && j<1000;
    };
    int dx[4] = {1,0,-1,0};
    int dy[4] = {0,1,0,-1};
    while(!que.empty()){
        tie(x, y) = que.front();
        que.pop();
        for (int i=0; i<4; i++){
            int nx=x+dx[i], ny=y+dy[i];
            if (f(nx, ny) && dist[nx][ny] == 1e9){
                dist[nx][ny] = dist[x][y]+1;
                que.push({nx, ny});
            }
        }
    }
    cin >> N;
    for (int i=0; i<N; i++){
        cin >> x >> y;
        ans = min(ans, dist[x][y]);
    }
    cout << ans << endl;

    return 0;
}
0