結果

問題 No.1950 片道きゃっちぼーる
ユーザー rogi52rogi52
提出日時 2022-05-21 00:12:00
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 666 ms / 3,000 ms
コード長 1,276 bytes
コンパイル時間 2,505 ms
コンパイル使用メモリ 224,068 KB
実行使用メモリ 36,224 KB
最終ジャッジ日時 2024-09-20 10:36:03
合計ジャッジ時間 11,156 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 3 ms
5,376 KB
testcase_02 AC 3 ms
5,376 KB
testcase_03 AC 283 ms
36,224 KB
testcase_04 AC 266 ms
36,096 KB
testcase_05 AC 2 ms
5,376 KB
testcase_06 AC 299 ms
36,096 KB
testcase_07 AC 258 ms
29,812 KB
testcase_08 AC 318 ms
29,824 KB
testcase_09 AC 285 ms
35,840 KB
testcase_10 AC 249 ms
30,624 KB
testcase_11 AC 286 ms
30,488 KB
testcase_12 AC 244 ms
30,616 KB
testcase_13 AC 311 ms
34,176 KB
testcase_14 AC 331 ms
36,096 KB
testcase_15 AC 666 ms
36,096 KB
testcase_16 AC 312 ms
35,960 KB
testcase_17 AC 2 ms
5,376 KB
testcase_18 AC 283 ms
32,896 KB
testcase_19 AC 645 ms
35,968 KB
testcase_20 AC 254 ms
29,840 KB
testcase_21 AC 307 ms
36,224 KB
testcase_22 AC 280 ms
36,084 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
#define rep(i,n) for(int i = 0; i < (n); i++)
using namespace std;
typedef long long ll;

int main(){
    cin.tie(0);
    ios::sync_with_stdio(0);
    
    int N; cin >> N;
    vector<int> X(N), A(N);
    rep(i,N) cin >> X[i];
    rep(i,N) cin >> A[i];
    map<int,int> mp;
    rep(i,N) mp[X[i]] = i;

    vector<vector<int>> G(N);
    vector<int> dp(N), deg(N, 0);
    set<pair<int,int>> se;
    rep(i,N) {
        dp[i] = X[i] + A[i];
        se.insert({X[i] + A[i], i});
        if(mp.count(X[i] + A[i])) {
            int to = mp[X[i] + A[i]];
            G[to].push_back(i);
            deg[i]++;
        }
        if(mp.count(X[i] - A[i])) {
            int to = mp[X[i] - A[i]];
            G[to].push_back(i);
            deg[i]++;
        }
    }

    while(!se.empty()) {
        queue<int> q;
        auto it = se.end(); it--;
        q.push(it->second);
        se.erase(*it);
        while(!q.empty()) {
            int from = q.front(); q.pop();
            for(int to : G[from]) {
                if(dp[to] < dp[from]) {
                    dp[to] = dp[from];
                    se.erase({X[to] + A[to], to});
                    q.push(to);
                }
            }
        }
    }

    rep(i,N) cout << dp[i] - X[i] << '\n';
}
0