結果

問題 No.2897 2集合間距離
ユーザー cho435cho435
提出日時 2024-09-20 22:38:27
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 303 ms / 3,500 ms
コード長 1,576 bytes
コンパイル時間 4,444 ms
コンパイル使用メモリ 264,216 KB
実行使用メモリ 19,200 KB
最終ジャッジ日時 2024-09-20 22:38:37
合計ジャッジ時間 7,843 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 27 ms
19,072 KB
testcase_01 AC 28 ms
19,072 KB
testcase_02 AC 28 ms
19,072 KB
testcase_03 AC 28 ms
19,072 KB
testcase_04 AC 29 ms
19,072 KB
testcase_05 AC 30 ms
19,200 KB
testcase_06 AC 28 ms
19,072 KB
testcase_07 AC 28 ms
19,072 KB
testcase_08 AC 27 ms
19,200 KB
testcase_09 AC 28 ms
19,072 KB
testcase_10 AC 26 ms
19,072 KB
testcase_11 AC 28 ms
19,072 KB
testcase_12 AC 29 ms
19,072 KB
testcase_13 AC 29 ms
19,072 KB
testcase_14 AC 31 ms
19,072 KB
testcase_15 AC 41 ms
19,072 KB
testcase_16 AC 286 ms
19,072 KB
testcase_17 AC 271 ms
18,944 KB
testcase_18 AC 260 ms
19,072 KB
testcase_19 AC 264 ms
19,072 KB
testcase_20 AC 303 ms
19,072 KB
testcase_21 AC 258 ms
19,072 KB
testcase_22 AC 253 ms
19,072 KB
testcase_23 AC 267 ms
19,200 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <atcoder/all>
#include <bits/stdc++.h>
using namespace std;
using ll = long long;
#define rep(i, s, t) for (ll i = s; i < (ll)(t); i++)

template<typename T>
bool chmin(T &x, T y) { return x > y ? (x = y, true) : false; }
template<typename T>
bool chmax(T &x, T y) { return x < y ? (x = y, true) : false; }

struct io_setup {
	io_setup() {
		ios::sync_with_stdio(false);
		std::cin.tie(nullptr);
		cout << fixed << setprecision(15);
	}
} io_setup;

int main(){
	int n;
	cin>>n;
	int sz=2e3+10;
	vector<vector<int>> fld(sz,vector<int>(sz));
	int shf=1e3+5;
	rep(i,0,n){
		int x,y;
		cin>>x>>y;
		fld.at(x+y+5).at(x-y+shf)++;
	}
	rep(i,1,sz) rep(j,0,sz) fld.at(i).at(j)+=fld.at(i-1).at(j);
	rep(i,0,sz) rep(j,1,sz) fld.at(i).at(j)+=fld.at(i).at(j-1);
	//rep(i,0,sz){
	//	rep(j,0,sz){
	//		cout<<fld.at(i).at(j)<<" ";
	//	}
	//	cout<<endl;
	//}
	int ans=1e9;
	int m;
	cin>>m;
	rep(lp,0,m){
		int z,w;
		cin>>z>>w;
		int nz=z+w+5,nw=z-w+shf;
		vector<int> dd={0,1,0,-1,0};
		auto check=[&](int d)  ->int {
			int tmp=0;
			{
				int nnz=max(nz-d-1,0);
				int nnw=max(nw-d-1,0);
				tmp+=fld.at(nnz).at(nnw);
			}
			{
				int nnz=max(nz-d-1,0);
				int nnw=min(nw+d,sz-1);
				tmp-=fld.at(nnz).at(nnw);
			}
			{
				int nnz=min(nz+d,sz-1);
				int nnw=max(nw-d-1,0);
				tmp-=fld.at(nnz).at(nnw);
			}
			{
				int nnz=min(nz+d,sz-1);
				int nnw=min(nw+d,sz-1);
				tmp+=fld.at(nnz).at(nnw);
			}
			return tmp>0;
		};
		int up=1e5;
		int dw=-1;
		while(up-dw>1){
			int md=(up+dw)/2;
			if(check(md)) up=md;
			else dw=md;
		}
		chmin(ans,up);
	}
	cout<<ans<<endl;
}
0