結果
問題 | No.1950 片道きゃっちぼーる |
ユーザー | otoshigo |
提出日時 | 2022-05-20 23:34:26 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,560 bytes |
コンパイル時間 | 4,869 ms |
コンパイル使用メモリ | 281,212 KB |
実行使用メモリ | 28,392 KB |
最終ジャッジ日時 | 2024-09-20 10:00:34 |
合計ジャッジ時間 | 11,927 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
5,248 KB |
testcase_01 | AC | 2 ms
5,248 KB |
testcase_02 | AC | 2 ms
5,376 KB |
testcase_03 | AC | 208 ms
23,800 KB |
testcase_04 | AC | 209 ms
23,812 KB |
testcase_05 | AC | 2 ms
5,376 KB |
testcase_06 | AC | 224 ms
23,852 KB |
testcase_07 | AC | 198 ms
28,392 KB |
testcase_08 | WA | - |
testcase_09 | WA | - |
testcase_10 | WA | - |
testcase_11 | AC | 226 ms
23,768 KB |
testcase_12 | AC | 200 ms
23,980 KB |
testcase_13 | AC | 226 ms
22,824 KB |
testcase_14 | AC | 234 ms
22,824 KB |
testcase_15 | WA | - |
testcase_16 | AC | 231 ms
23,620 KB |
testcase_17 | WA | - |
testcase_18 | AC | 217 ms
25,252 KB |
testcase_19 | WA | - |
testcase_20 | AC | 206 ms
28,224 KB |
testcase_21 | AC | 241 ms
23,972 KB |
testcase_22 | AC | 239 ms
23,648 KB |
ソースコード
#include <bits/stdc++.h> #include <atcoder/all> using namespace std; using ll = long long; using mint = atcoder::modint998244353; #define rep(i,n) for (int i = 0; i < n; i++) #define rrep(i,n) for (int i = n-1; i >= 0; i--) #define rep2(i,a,b) for (int i = a; i < b; i++) #define rrep2(i,a,b) for (int i = a-1; i >= b; i--) #define rep3(i,a,b,c) for (int i = a; i < b; i+=c) #define rrep3(i,a,b,c) for (int i = a-1; i >= b; i-=c) #define all(v) v.begin(),v.end() #define rall(v) v.rbegin(),v.rend() template<class T> bool chmax(T &a, T b){if (a < b){a = b;return true;} else return false;} template<class T> bool chmin(T &a, T b){if (a > b){a = b;return true;} else return false;} int n,X[200010],A[200010]; int main(){ ios::sync_with_stdio(false); cin.tie(nullptr); cin>>n; atcoder::dsu uf(n); map<int,int>mp; rep(i,n){ cin>>X[i]; mp[X[i]]=i; } vector<pair<int,int>>vp; rep(i,n){ cin>>A[i]; vp.push_back(make_pair(A[i]+X[i],i)); if(mp.count(X[i]-A[i]))uf.merge(i,mp[X[i]-A[i]]); if(mp.count(X[i]+A[i]))uf.merge(i,mp[X[i]+A[i]]); } sort(rall(vp)); vector<bool>flag(n); vector<vector<int>>vv(n); rep(i,n){ vv[uf.leader(i)].push_back(i); } vector<int>Ans(n); rep(i,n)Ans[i]=A[i]; for(auto[c,x]:vp){ int l=uf.leader(x); if(flag[l])continue; flag[uf.leader(x)]=true; vector<int>g=vv[l]; for(auto i:g){ chmax(Ans[i],A[x]+(X[x]-X[i])); } } rep(i,n)cout<<Ans[i]<<"\n"; }