結果

問題 No.1950 片道きゃっちぼーる
ユーザー milanis48663220milanis48663220
提出日時 2022-05-20 22:35:33
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 715 ms / 3,000 ms
コード長 2,240 bytes
コンパイル時間 1,422 ms
コンパイル使用メモリ 135,908 KB
実行使用メモリ 27,840 KB
最終ジャッジ日時 2023-10-20 13:20:50
合計ジャッジ時間 13,385 ms
ジャッジサーバーID
(参考情報)
judge15 / judge12
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
4,348 KB
testcase_01 AC 2 ms
4,348 KB
testcase_02 AC 2 ms
4,348 KB
testcase_03 AC 468 ms
27,496 KB
testcase_04 AC 476 ms
27,496 KB
testcase_05 AC 2 ms
4,348 KB
testcase_06 AC 513 ms
27,496 KB
testcase_07 AC 423 ms
21,248 KB
testcase_08 AC 450 ms
21,248 KB
testcase_09 AC 474 ms
27,392 KB
testcase_10 AC 469 ms
22,664 KB
testcase_11 AC 505 ms
26,188 KB
testcase_12 AC 469 ms
26,188 KB
testcase_13 AC 503 ms
25,620 KB
testcase_14 AC 526 ms
27,496 KB
testcase_15 AC 715 ms
27,492 KB
testcase_16 AC 519 ms
27,496 KB
testcase_17 AC 2 ms
4,348 KB
testcase_18 AC 461 ms
24,368 KB
testcase_19 AC 715 ms
27,492 KB
testcase_20 AC 433 ms
21,248 KB
testcase_21 AC 529 ms
27,840 KB
testcase_22 AC 534 ms
27,496 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <algorithm>
#include <iomanip>
#include <vector>
#include <queue>
#include <deque>
#include <set>
#include <map>
#include <tuple>
#include <cmath>
#include <numeric>
#include <functional>
#include <cassert>

#define debug_value(x) cerr << "line" << __LINE__ << ":<" << __func__ << ">:" << #x << "=" << x << endl;
#define debug(x) cerr << "line" << __LINE__ << ":<" << __func__ << ">:" << x << endl;

template<class T> inline bool chmax(T& a, T b) { if (a < b) { a = b; return 1; } return 0; }
template<class T> inline bool chmin(T& a, T b) { if (a > b) { a = b; return 1; } return 0; }

using namespace std;
typedef long long ll;

template<typename T>
vector<vector<T>> vec2d(int n, int m, T v){
    return vector<vector<T>>(n, vector<T>(m, v));
}

template<typename T>
vector<vector<vector<T>>> vec3d(int n, int m, int k, T v){
    return vector<vector<vector<T>>>(n, vector<vector<T>>(m, vector<T>(k, v)));
}

template<typename T>
void print_vector(vector<T> v, char delimiter=' '){
    if(v.empty()) {
        cout << endl;
        return;
    }
    for(int i = 0; i+1 < v.size(); i++) cout << v[i] << delimiter;
    cout << v.back() << endl;
}

using P = pair<int, int>;

int main(){
    ios::sync_with_stdio(false);
    cin.tie(0);
    cout << setprecision(10) << fixed;
    int n; cin >> n;
    vector<int> x(n);
    map<int, int> indices;
    for(int i = 0; i < n; i++){
        cin >> x[i];
        indices[x[i]] = i;
    }
    vector<int> a(n);
    vector<vector<int>> g(n);
    for(int i = 0; i < n; i++){
        cin >> a[i];
        int l = x[i]-a[i];
        int r = x[i]+a[i];
        if(indices.count(l)){
            int j = indices[l];
            g[j].push_back(i);
        }
        if(indices.count(r)){
            int j = indices[r];
            g[j].push_back(i);
        }
    }
    vector<bool> ok(n);
    priority_queue<P> que;
    for(int i = 0; i < n; i++) que.push(P(x[i]+a[i], i));
    vector<int> ans(n);
    while(!que.empty()){
        auto [d, v] = que.top(); que.pop();
        if(ok[v]) continue;
        ans[v] = d;
        ok[v] = true;
        for(int to: g[v]){
            que.push(P(d, to));
        }
    }
    for(int i = 0; i < n; i++) cout << ans[i]-x[i] << endl;
}
0