結果

問題 No.1950 片道きゃっちぼーる
ユーザー shinchanshinchan
提出日時 2022-05-20 22:39:05
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 1,053 bytes
コンパイル時間 2,413 ms
コンパイル使用メモリ 223,632 KB
実行使用メモリ 33,588 KB
最終ジャッジ日時 2024-09-20 08:57:37
合計ジャッジ時間 14,010 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
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 501 ms
32,956 KB
testcase_04 WA -
testcase_05 AC 2 ms
5,376 KB
testcase_06 AC 512 ms
32,956 KB
testcase_07 AC 465 ms
32,748 KB
testcase_08 AC 480 ms
32,956 KB
testcase_09 WA -
testcase_10 AC 494 ms
32,828 KB
testcase_11 AC 505 ms
32,832 KB
testcase_12 AC 472 ms
32,956 KB
testcase_13 AC 504 ms
32,828 KB
testcase_14 WA -
testcase_15 WA -
testcase_16 AC 515 ms
32,832 KB
testcase_17 AC 2 ms
5,376 KB
testcase_18 AC 494 ms
32,952 KB
testcase_19 WA -
testcase_20 AC 479 ms
32,956 KB
testcase_21 WA -
testcase_22 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
#define be(v) (v).begin(),(v).end()
#define pb(q) push_back(q)
#define rep(i, n) for(int i=0;i<n;i++)
#define all(i, v) for(auto& i : v)
typedef long long ll;
using namespace std;
const ll mod=1000000007, INF=(1LL<<60);
#define doublecout(a) cout<<fixed<<setprecision(10)<<a<<endl;

void chmax(ll &a, ll b) { a = max(a, b); }
int main() {
    cin.tie(0);
    cout.tie(0);
    ios::sync_with_stdio(false); 
    ll n;
    cin >> n;
    vector<ll> a(n), x(n);
    rep(i, n) cin >> x[i];
    rep(i, n) cin >> a[i];
    vector<ll> dist(n, -1);
    vector<pair<ll, ll>> v;
    map<ll, int> mp;
    set<ll> s;
    rep(i, n) {
        v.push_back({a[i] + x[i], i});
        mp[x[i]] = i;
        s.insert(x[i]);
    }
    sort(be(v));
    reverse(be(v));
    for(auto [e, i] : v) {
        chmax(dist[i], e);
        if(s.count(x[i] - a[i])) chmax(dist[i], dist[mp[x[i] - a[i]]]);
        if(s.count(x[i] + a[i])) chmax(dist[i], dist[mp[x[i] + a[i]]]);
    }
    rep(i, n) {
        cout << dist[i] - x[i] << endl;
    }
    return 0;
}
0