結果
問題 | No.2897 2集合間距離 |
ユーザー | momoyuu |
提出日時 | 2024-09-20 21:50:38 |
言語 | C++23 (gcc 12.3.0 + boost 1.83.0) |
結果 |
TLE
|
実行時間 | - |
コード長 | 2,540 bytes |
コンパイル時間 | 1,527 ms |
コンパイル使用メモリ | 125,872 KB |
実行使用メモリ | 10,752 KB |
最終ジャッジ日時 | 2024-09-20 21:51:11 |
合計ジャッジ時間 | 7,329 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
10,624 KB |
testcase_01 | AC | 2 ms
5,376 KB |
testcase_02 | AC | 1 ms
5,376 KB |
testcase_03 | AC | 2 ms
5,376 KB |
testcase_04 | AC | 2 ms
5,376 KB |
testcase_05 | AC | 1 ms
5,376 KB |
testcase_06 | AC | 1 ms
5,376 KB |
testcase_07 | AC | 2 ms
5,376 KB |
testcase_08 | AC | 2 ms
5,376 KB |
testcase_09 | AC | 1 ms
5,376 KB |
testcase_10 | AC | 1 ms
5,376 KB |
testcase_11 | AC | 3 ms
5,376 KB |
testcase_12 | AC | 8 ms
5,376 KB |
testcase_13 | AC | 27 ms
5,376 KB |
testcase_14 | AC | 110 ms
5,376 KB |
testcase_15 | AC | 309 ms
5,404 KB |
testcase_16 | TLE | - |
testcase_17 | -- | - |
testcase_18 | -- | - |
testcase_19 | -- | - |
testcase_20 | -- | - |
testcase_21 | -- | - |
testcase_22 | -- | - |
testcase_23 | -- | - |
ソースコード
#include<iostream> #include<vector> #include<algorithm> using namespace std; using ll = long long; #include<atcoder/fenwicktree> int main(){ cin.tie(nullptr); ios::sync_with_stdio(false); int n; cin>>n; vector<ll> x(n),y(n); for(int i = 0;i<n;i++) cin>>x[i]>>y[i]; for(int i = 0;i<n;i++){ ll a = x[i] + y[i]; ll b = x[i] - y[i]; x[i] = a; y[i] = b; } int m; cin>>m; vector<ll> z(m),w(m); for(int i = 0;i<m;i++){ cin>>z[i]>>w[i]; ll a = z[i] + w[i]; ll b = z[i] - w[i]; z[i] = a; w[i] = b; } ll right = 1e9; ll left = -1; while(right-left>1){ ll mid = (right+left) / 2; vector<ll> dy; vector<pair<pair<ll,int>,pair<ll,ll>>> que; for(int i = 0;i<n;i++){ dy.push_back(y[i]); que.push_back(make_pair(make_pair(x[i],100),make_pair(y[i],0))); } vector<ll> cnt(m,0); vector<int> vis(m,0); for(int i = 0;i<m;i++){ dy.push_back(w[i]-mid); dy.push_back(w[i]+mid+1); que.push_back(make_pair(make_pair(z[i]-mid,-i),make_pair(w[i]-mid,w[i]+mid+1))); que.push_back(make_pair(make_pair(z[i]+mid+1,-i),make_pair(w[i]-mid,w[i]+mid+1))); } sort(dy.begin(),dy.end()); dy.erase(unique(dy.begin(),dy.end()),dy.end()); int mm = dy.size(); atcoder::fenwick_tree<ll> bit(mm); sort(que.begin(),que.end()); for(int i = 0;i<que.size();i++){ //cout<<i<<endl; auto now = que[i]; int t = now.first.second; //cout<<i<<endl; if(t==100){ ll want = now.second.first; int ni = lower_bound(dy.begin(),dy.end(),want) - dy.begin(); bit.add(ni,1); }else{ ll w1 = now.second.first; ll w2 = now.second.second; int ni = lower_bound(dy.begin(),dy.end(),w1) - dy.begin(); int nj = lower_bound(dy.begin(),dy.end(),w2) - dy.begin(); int u = -now.first.second; // cout<<u<<endl; if(vis[u]++){ cnt[u] += bit.sum(ni,nj); }else{ cnt[u] -= bit.sum(ni,nj); } } } bool fn = false; for(int i = 0;i<m;i++) if(cnt[i]>0) fn = true; if(fn) right = mid; else left = mid; } cout<<right<<endl; }