結果
問題 | No.2897 2集合間距離 |
ユーザー | Carpenters-Cat |
提出日時 | 2024-09-20 21:55:36 |
言語 | C++17(gcc12) (gcc 12.3.0 + boost 1.87.0) |
結果 |
AC
|
実行時間 | 255 ms / 3,500 ms |
コード長 | 882 bytes |
コンパイル時間 | 2,401 ms |
コンパイル使用メモリ | 208,872 KB |
実行使用メモリ | 20,992 KB |
最終ジャッジ日時 | 2024-09-20 21:55:51 |
合計ジャッジ時間 | 5,150 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge3 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
other | AC * 24 |
ソースコード
#include <bits/stdc++.h> using namespace std; int main () { int N; cin >> N; int H = 2020, W = 2020; vector A(H, vector(W, 0)); while (N--) { int x, y; cin >> x >> y; x ++; y ++; A[x + y][x - y + 1000] ++; } for (int i = 1; i < H; i ++) { for (int j = 1; j < W; j ++) { A[i][j] += A[i][j - 1] + A[i - 1][j] - A[i - 1][j - 1]; } } cin >> N; vector<pair<int, int>> B(N); for (auto& [x, y] : B) { int a, b; cin >> a >> b; a ++; b ++; x = a + b; y = a - b + 1000; } int ok = H, ng = -1; while (abs(ok - ng) > 1) { int mu = (ok + ng) / 2; bool ex = false; for (auto& [x, y] : B) { int a1 = min(H-1, x + mu), b1 = min(W-1, y + mu), a2 = max(0, x - mu - 1), b2 = max(0, y - mu - 1); int c = A[a1][b1] + A[a2][b2] - A[a1][b2] - A[a2][b1]; ex = ex || c; } if (ex) { ok = mu; } else { ng = mu; } } cout << ok << endl; }