結果

問題 No.2897 2集合間距離
ユーザー t98slidert98slider
提出日時 2024-09-20 23:21:25
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 135 ms / 3,500 ms
コード長 965 bytes
コンパイル時間 2,378 ms
コンパイル使用メモリ 209,864 KB
実行使用メモリ 11,008 KB
最終ジャッジ日時 2024-09-20 23:21:45
合計ジャッジ時間 5,038 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 34 ms
7,424 KB
testcase_01 AC 32 ms
7,296 KB
testcase_02 AC 32 ms
7,424 KB
testcase_03 AC 32 ms
7,296 KB
testcase_04 AC 31 ms
7,296 KB
testcase_05 AC 31 ms
7,424 KB
testcase_06 AC 31 ms
7,424 KB
testcase_07 AC 32 ms
7,296 KB
testcase_08 AC 32 ms
7,424 KB
testcase_09 AC 31 ms
7,424 KB
testcase_10 AC 32 ms
7,552 KB
testcase_11 AC 34 ms
7,552 KB
testcase_12 AC 38 ms
7,680 KB
testcase_13 AC 38 ms
7,808 KB
testcase_14 AC 42 ms
8,320 KB
testcase_15 AC 46 ms
8,448 KB
testcase_16 AC 135 ms
11,008 KB
testcase_17 AC 126 ms
10,880 KB
testcase_18 AC 129 ms
11,008 KB
testcase_19 AC 129 ms
10,880 KB
testcase_20 AC 129 ms
11,008 KB
testcase_21 AC 107 ms
9,600 KB
testcase_22 AC 101 ms
9,216 KB
testcase_23 AC 116 ms
9,088 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
using ll = long long;

int main(){
    ios::sync_with_stdio(false);
    cin.tie(0);
    int n;
    cin >> n;
    queue<pair<int,int>> que;
    constexpr int r = 1000;
    vector<vector<int>> A(r, vector<int>(r, 1 << 30));
    for(int i = 0; i < n; i++){
        int y, x;
        cin >> y >> x;
        A[y][x] = 0;
        que.emplace(y, x);
    }
    while(!que.empty()){
        auto [y, x] = que.front();
        que.pop();
        for(int i = 0; i < 4; i++){
            int ny = y + (i == 0) - (i == 1);
            int nx = x + (i == 2) - (i == 3);
            if(ny < 0 || nx < 0 || ny >= r || nx >= r) continue;
            if(A[y][x] + 1 >= A[ny][nx])continue;
            A[ny][nx] = A[y][x] + 1;
            que.emplace(ny, nx);
        }
    }
    int m, ans = 1 << 30;
    cin >> m;
    while(m--){
        int y, x;
        cin >> y >> x;
        ans = min(ans, A[y][x]);
    }
    cout << ans << '\n';
}
0