結果

問題 No.2897 2集合間距離
ユーザー momoyuumomoyuu
提出日時 2024-09-20 21:52:32
言語 C++23
(gcc 12.3.0 + boost 1.83.0)
結果
TLE  
実行時間 -
コード長 2,546 bytes
コンパイル時間 1,636 ms
コンパイル使用メモリ 126,204 KB
実行使用メモリ 62,584 KB
最終ジャッジ日時 2024-09-20 21:53:07
合計ジャッジ時間 31,602 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
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 1 ms
5,376 KB
testcase_05 AC 2 ms
5,376 KB
testcase_06 AC 1 ms
5,376 KB
testcase_07 AC 2 ms
5,376 KB
testcase_08 AC 1 ms
5,376 KB
testcase_09 AC 2 ms
5,376 KB
testcase_10 AC 1 ms
5,376 KB
testcase_11 AC 3 ms
5,376 KB
testcase_12 AC 6 ms
5,376 KB
testcase_13 AC 12 ms
5,376 KB
testcase_14 AC 63 ms
5,376 KB
testcase_15 AC 147 ms
5,664 KB
testcase_16 TLE -
testcase_17 TLE -
testcase_18 TLE -
testcase_19 TLE -
testcase_20 TLE -
testcase_21 TLE -
testcase_22 AC 3,332 ms
61,012 KB
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;
    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;
}

0