結果

問題 No.2897 2集合間距離
ユーザー vjudge1vjudge1
提出日時 2024-09-25 11:24:28
言語 C++23(gcc13)
(gcc 13.2.0 + boost 1.83.0)
結果
AC  
実行時間 110 ms / 3,500 ms
コード長 1,176 bytes
コンパイル時間 4,745 ms
コンパイル使用メモリ 273,812 KB
実行使用メモリ 20,864 KB
最終ジャッジ日時 2024-09-25 11:24:39
合計ジャッジ時間 7,646 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 23 ms
19,328 KB
testcase_01 AC 23 ms
19,456 KB
testcase_02 AC 23 ms
19,456 KB
testcase_03 AC 19 ms
19,456 KB
testcase_04 AC 18 ms
19,456 KB
testcase_05 AC 19 ms
19,328 KB
testcase_06 AC 17 ms
19,328 KB
testcase_07 AC 17 ms
19,456 KB
testcase_08 AC 13 ms
19,328 KB
testcase_09 AC 15 ms
19,456 KB
testcase_10 AC 13 ms
19,456 KB
testcase_11 AC 11 ms
19,456 KB
testcase_12 AC 12 ms
19,328 KB
testcase_13 AC 12 ms
19,188 KB
testcase_14 AC 13 ms
19,328 KB
testcase_15 AC 16 ms
19,328 KB
testcase_16 AC 94 ms
20,840 KB
testcase_17 AC 95 ms
20,848 KB
testcase_18 AC 92 ms
20,692 KB
testcase_19 AC 91 ms
20,864 KB
testcase_20 AC 93 ms
20,864 KB
testcase_21 AC 92 ms
20,864 KB
testcase_22 AC 110 ms
20,864 KB
testcase_23 AC 90 ms
20,864 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

using i64 = long long;
const int N = 2e5 + 10, M = 2e3 + 10;

int n, x[N], y[N];

int g[M][M];

int ask(int x1, int y1, int x2, int y2) {
    if(x1 < 0) x1 = 0;
    if(y1 < 0) y1 = 0;
    if(x2 >= M) x2 = M - 1;
    if(y2 >= M) y2 = M - 1;
    return g[x2][y2] - g[x2][y1] - g[x1][y2] + g[x1][y1];
}

int main() {
    ios::sync_with_stdio(false);
    cin.tie(0);

    cin >> n;
    for(int i = 1, a, b; i <= n; i ++) {
        cin >> a >> b;
        x[i] = a + b + 1;
        y[i] = a - b + 1001;
    }

    int m;
    cin >> m;
    for(int i = 1, a, b, x, y; i <= m; i ++) {
        cin >> a >> b;
        x = a + b + 1;
        y = a - b + 1001;
        g[x][y] ++;
    }

    for(int i = 1; i < M; i ++)
        for(int j = 1; j < M; j ++)
            g[i][j] += g[i - 1][j] + g[i][j - 1] - g[i - 1][j - 1];
    
    int l = -1, r = M;
    while(l + 1 < r) {
        int mid = (l + r) / 2;
        bool found = false;
        for(int i = 1; i <= n && !found; i ++)
            if(ask(x[i] - mid - 1, y[i] - mid - 1, x[i] + mid, y[i] + mid)) found = true;
        if(found) r = mid;
        else l = mid;
    }
    cout << r;
}
0