結果

問題 No.2897 2集合間距離
ユーザー momoyuumomoyuu
提出日時 2024-09-20 21:53:27
言語 C++23
(gcc 12.3.0 + boost 1.83.0)
結果
TLE  
実行時間 -
コード長 2,470 bytes
コンパイル時間 1,630 ms
コンパイル使用メモリ 126,228 KB
実行使用メモリ 64,368 KB
最終ジャッジ日時 2024-09-20 21:54:06
合計ジャッジ時間 34,146 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 2 ms
5,376 KB
testcase_02 AC 2 ms
5,376 KB
testcase_03 AC 2 ms
5,376 KB
testcase_04 AC 2 ms
5,376 KB
testcase_05 AC 3 ms
5,376 KB
testcase_06 AC 2 ms
5,376 KB
testcase_07 AC 2 ms
5,376 KB
testcase_08 AC 2 ms
5,376 KB
testcase_09 AC 2 ms
5,376 KB
testcase_10 AC 3 ms
5,376 KB
testcase_11 AC 3 ms
5,376 KB
testcase_12 AC 7 ms
5,376 KB
testcase_13 AC 14 ms
5,376 KB
testcase_14 AC 54 ms
5,376 KB
testcase_15 AC 161 ms
5,644 KB
testcase_16 TLE -
testcase_17 TLE -
testcase_18 TLE -
testcase_19 TLE -
testcase_20 TLE -
testcase_21 TLE -
testcase_22 TLE -
testcase_23 TLE -
権限があれば一括ダウンロードができます

ソースコード

diff #

#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 = 3e6;
    ll left = -1;
    vector<ll> dy;
    for(int i = 0;i<n;i++) dy.push_back(y[i]);
    sort(dy.begin(),dy.end());
    dy.erase(unique(dy.begin(),dy.end()),dy.end());
    while(right-left>1){
        ll mid = (right+left) / 2;
        vector<pair<pair<ll,int>,pair<ll,ll>>> que;
        for(int i = 0;i<n;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++){
            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)));
        }

        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;
}

0