結果

問題 No.1950 片道きゃっちぼーる
ユーザー HIcoderHIcoder
提出日時 2023-07-17 16:40:50
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 2,067 ms / 3,000 ms
コード長 2,046 bytes
コンパイル時間 1,517 ms
コンパイル使用メモリ 134,016 KB
実行使用メモリ 166,980 KB
最終ジャッジ日時 2024-09-17 21:30:02
合計ジャッジ時間 25,591 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,816 KB
testcase_01 AC 2 ms
6,940 KB
testcase_02 AC 2 ms
6,944 KB
testcase_03 AC 1,039 ms
139,716 KB
testcase_04 AC 1,090 ms
141,152 KB
testcase_05 AC 2 ms
6,940 KB
testcase_06 AC 812 ms
88,508 KB
testcase_07 AC 1,318 ms
166,980 KB
testcase_08 AC 2,067 ms
165,804 KB
testcase_09 AC 1,065 ms
126,416 KB
testcase_10 AC 1,063 ms
115,076 KB
testcase_11 AC 1,153 ms
115,516 KB
testcase_12 AC 1,121 ms
116,200 KB
testcase_13 AC 914 ms
88,712 KB
testcase_14 AC 813 ms
74,680 KB
testcase_15 AC 1,751 ms
133,036 KB
testcase_16 AC 815 ms
78,520 KB
testcase_17 AC 2 ms
6,940 KB
testcase_18 AC 1,205 ms
143,328 KB
testcase_19 AC 1,660 ms
129,264 KB
testcase_20 AC 1,142 ms
116,592 KB
testcase_21 AC 850 ms
79,384 KB
testcase_22 AC 855 ms
79,656 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;


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];//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);
        }
    };

    //インデックスが大きいほどx方向への正の方向への絶対値がおおきい
    //
    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