結果

問題 No.1950 片道きゃっちぼーる
ユーザー HIcoderHIcoder
提出日時 2023-07-17 16:38:41
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 1,789 ms / 3,000 ms
コード長 3,444 bytes
コンパイル時間 1,516 ms
コンパイル使用メモリ 139,108 KB
実行使用メモリ 166,132 KB
最終ジャッジ日時 2024-09-17 21:29:36
合計ジャッジ時間 22,634 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 1 ms
5,376 KB
testcase_02 AC 1 ms
5,376 KB
testcase_03 AC 957 ms
139,140 KB
testcase_04 AC 979 ms
139,144 KB
testcase_05 AC 2 ms
5,376 KB
testcase_06 AC 717 ms
87,684 KB
testcase_07 AC 1,191 ms
165,760 KB
testcase_08 AC 1,789 ms
166,132 KB
testcase_09 AC 964 ms
125,932 KB
testcase_10 AC 968 ms
114,952 KB
testcase_11 AC 1,021 ms
114,948 KB
testcase_12 AC 1,000 ms
114,980 KB
testcase_13 AC 828 ms
87,684 KB
testcase_14 AC 737 ms
74,116 KB
testcase_15 AC 1,423 ms
132,996 KB
testcase_16 AC 731 ms
78,088 KB
testcase_17 AC 2 ms
5,376 KB
testcase_18 AC 1,090 ms
143,236 KB
testcase_19 AC 1,413 ms
127,748 KB
testcase_20 AC 1,017 ms
114,944 KB
testcase_21 AC 769 ms
79,364 KB
testcase_22 AC 770 ms
79,368 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<iostream>
#include<set> 
#include<algorithm>
#include<vector>
#include<string>
#include<set>
#include<map>
#include<numeric>
#include<queue>
#include<cmath>
#include <unordered_set>
using namespace std;
typedef long long ll;
const ll INF=1LL<<60;
typedef pair<ll,ll> P;
typedef pair<int,P> PP;
const ll MOD=1e9+7;


class UnionFind{

public:
    std::vector<int> par;
    std::vector<int> rank;
    std::vector<int> sz;//sz[i]で,頂点iが含まれているグループのサイズ
    std::vector<int> root;

    UnionFind(int size){
        rank=std::vector<int>(size+1,0);
        
        par = std::vector<int>(size+1,0);
        std::iota(par.begin(),par.end(),0);//#include<numeric>
        sz = std::vector<int>(size+1,1);
        root=std::vector<int>(size+1);
        std::iota(root.begin(),root.end(),0);
    }  

    

    ~UnionFind(){
        std::vector<int>().swap(rank);
        std::vector<int>().swap(par);
        std::vector<int>().swap(sz);
        std::vector<int>().swap(root);
    }  


    int find(int x){
        if(par[x]==x)return x;
        else return par[x] = find(par[x]);
    }

    bool issame(int u,int v){
        return find(u)==find(v);
    }


    void merge(int u,int v){
        u = find(u);
        v = find(v);
        if(u==v) return;

       
        if(rank[u]<rank[v]) std::swap(u,v);
        //uの傘下へvが入る
        
        //rank[u]>=rank[v]
        par[v]=u;
        sz[u]+=sz[v];
        if(rank[u]==rank[v])rank[u]++;

    }
    

    int size(int u){//頂点uが属すグループの大きさを表す.
        u=find(u);
        return sz[u];
    }

    std::map<int,std::vector<int>> element(){
        std::map<int,std::vector<int>> mp;
        for(int i=0;i<par.size();i++){
            root[i]=find(i);
            mp[root[i]].push_back(i);
        }
        return mp;

    }
};


int main(){
    int N;
    cin>>N;

  
    vector<ll> X(N);
    vector<ll> A(N);
    for(int i=0;i<N;i++){
        cin>>X[i];
    }
    for(int i=0;i<N;i++){
        cin>>A[i];
    }

    vector<ll> d;

    for(int i=0;i<N;i++){
        //mp[X[i]]=i;//X[i]に人iがいる
        d.push_back(X[i]);
        d.push_back(X[i]+A[i]);
        d.push_back(X[i]-A[i]);
    }

    
    set<ll> setd(d.begin(),d.end());

    map<ll,ll> mpd;
    int sz=0;
    for(ll val:setd){
        mpd[val]=sz;
        sz++;
    }

    
    map<ll,ll> rev;
    for(auto [val,idx]:mpd){
        rev[idx]=val;
    }
    



    vector<vector<int>> G(sz),rG(sz);

    
    set<pair<int,int>> edges;

    for(int i=0;i<N;i++){
        //k番目から辺を張る

        int k=mpd[X[i]];

            {
            int j=mpd[X[i]+A[i]];
            
            G[j].push_back(k);
            rG[k].push_back(j);
          
            }

            {
            int j=mpd[X[i]-A[i]];
            G[j].push_back(k);
            rG[k].push_back(j);
            }
           
            
         
    }


    vector<bool> vis(sz,false);
    vector<ll> ans(sz);

    for(int i=0;i<sz;i++){
        ans[i]=rev[i];
    }

    auto dfs=[&](auto f,int now)->void{
        vis[now]=true;
        for(int to:G[now]){
            if(vis[to]) continue;
            ans[to]=max(ans[to],ans[now]);
            f(f,to);
        }
    };

    for(int i=sz-1;i>=0;i--){
        if(!vis[i]){
            dfs(dfs,i);
        }
    }

    for(int i=0;i<N;i++){
        cout<<ans[mpd[X[i]]]-X[i]<<endl;

    }



}

    
0