結果

問題 No.2296 Union Path Query (Hard)
ユーザー t98slidert98slider
提出日時 2023-02-16 01:40:00
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 350 ms / 7,000 ms
コード長 3,520 bytes
コンパイル時間 2,102 ms
コンパイル使用メモリ 199,508 KB
実行使用メモリ 37,156 KB
最終ジャッジ日時 2024-05-02 13:54:06
合計ジャッジ時間 20,515 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 20 ms
28,112 KB
testcase_02 AC 18 ms
28,236 KB
testcase_03 AC 18 ms
28,244 KB
testcase_04 AC 174 ms
31,312 KB
testcase_05 AC 181 ms
31,316 KB
testcase_06 AC 240 ms
32,848 KB
testcase_07 AC 252 ms
34,128 KB
testcase_08 AC 257 ms
34,132 KB
testcase_09 AC 185 ms
21,152 KB
testcase_10 AC 187 ms
21,152 KB
testcase_11 AC 193 ms
20,900 KB
testcase_12 AC 177 ms
18,960 KB
testcase_13 AC 87 ms
5,376 KB
testcase_14 AC 81 ms
5,376 KB
testcase_15 AC 276 ms
33,620 KB
testcase_16 AC 226 ms
26,616 KB
testcase_17 AC 132 ms
11,008 KB
testcase_18 AC 340 ms
35,024 KB
testcase_19 AC 223 ms
19,096 KB
testcase_20 AC 334 ms
35,156 KB
testcase_21 AC 331 ms
33,620 KB
testcase_22 AC 314 ms
33,360 KB
testcase_23 AC 203 ms
36,044 KB
testcase_24 AC 161 ms
19,284 KB
testcase_25 AC 177 ms
34,644 KB
testcase_26 AC 177 ms
34,644 KB
testcase_27 AC 310 ms
34,648 KB
testcase_28 AC 302 ms
34,668 KB
testcase_29 AC 350 ms
35,544 KB
testcase_30 AC 339 ms
35,668 KB
testcase_31 AC 317 ms
32,980 KB
testcase_32 AC 310 ms
32,600 KB
testcase_33 AC 276 ms
32,088 KB
testcase_34 AC 206 ms
31,444 KB
testcase_35 AC 192 ms
31,060 KB
testcase_36 AC 212 ms
30,032 KB
testcase_37 AC 279 ms
23,732 KB
testcase_38 AC 276 ms
23,332 KB
testcase_39 AC 293 ms
23,856 KB
testcase_40 AC 305 ms
23,732 KB
testcase_41 AC 2 ms
5,376 KB
testcase_42 AC 2 ms
5,376 KB
testcase_43 AC 2 ms
5,376 KB
testcase_44 AC 298 ms
36,312 KB
testcase_45 AC 312 ms
36,180 KB
testcase_46 AC 312 ms
37,156 KB
testcase_47 AC 306 ms
36,948 KB
testcase_48 AC 318 ms
36,564 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
using ll = long long;

struct problem_H {
    int MAX_LOGV, N;
    vector<vector<pair<int, int>>> G;
    vector<vector<int>> parent;
    vector<ll> dp;
    vector<int> depth;
    vector<int> parent_or_size;
    vector<tuple<ll, int, int>> diameter;
    queue<int> que;

    problem_H(int n) : N(n) {
        MAX_LOGV = __lg(N) + 1;
        G.resize(N);
        parent.resize(MAX_LOGV, vector<int>(N, -1));
        parent_or_size.resize(N, -1);
        dp.resize(N), depth.resize(N);
        diameter.resize(N);
        for(int i = 0; i < N; i++) diameter[i] = make_tuple(0, i, i);
    }

    int leader(int v){ return parent_or_size[v] < 0 ? v : parent_or_size[v]; }

    void merge(int u, int v, int w){
        int x = leader(u), y = leader(v);
        if(-parent_or_size[x] < -parent_or_size[y]) {
            swap(x, y);
            swap(u, v);
        }
        parent_or_size[x] += parent_or_size[y];

        int log_limit = __lg(-parent_or_size[x]) + 1;

        G[u].emplace_back(v, w);
        G[v].emplace_back(u, w);
        parent[0][v] = u;
        depth[v] = depth[u] + 1;
        dp[v] = dp[u] + w;

        que.push(v);

        while(!que.empty()){
            v = que.front();
            que.pop();
            parent_or_size[v] = x;
            for(int i = 0; i + 1 < log_limit; i++){
                if(parent[i][v] == -1) parent[i + 1][v] = -1;
                else parent[i + 1][v] = parent[i][parent[i][v]];
            }
            for(auto &edge : G[v]){
                tie(u, w) = edge;
                if(parent[0][v] == u) continue;
                que.push(u);
                parent[0][u] = v;
                depth[u] = depth[v] + 1;
                dp[u] = dp[v] + w;
            }
        }

        update_diameter(x, y);
    }

    void update_diameter(int x, int y){
        tuple<ll, int, int> mx = max(diameter[x], diameter[y]);
        array<int, 4> cv;
        ll temp;
        tie(temp, cv[0], cv[1]) = diameter[x];
        tie(temp, cv[2], cv[3]) = diameter[y];
        for(int i = 0; i < 2; i++){
            for(int j = 2; j < 4; j++){
                mx = max(mx, make_tuple(dist(cv[i], cv[j]), cv[i], cv[j]));
            }
        }
        diameter[x] = mx;
    }

    long long dist(int u, int v){
        if(leader(u) != leader(v)) return -1;
        if(depth[v] < depth[u]) swap(v, u);
        long long res = dp[u] + dp[v];
        int d = depth[v] - depth[u];
        for(int i = MAX_LOGV - 1; i >= 0; i--){
            if(d >> i & 1) v = parent[i][v];
        }
        if(u == v) return res - 2 * dp[v];
        for(int i = MAX_LOGV - 1; i >= 0; i--){
            if(parent[i][v] != parent[i][u]){
                v = parent[i][v];
                u = parent[i][u];
            }
        }
        v = parent[0][v];
        return res - 2 * dp[v];
    }
};

int main(){
    ios::sync_with_stdio(false);
    cin.tie(0);

    int N, Q;
    ll X;
    cin >> N >> X >> Q;

    problem_H uf(N);
    
    int type, u, v, w;
    while(Q--){
        cin >> type;
        if(type == 1){
            cin >> v >> w;
            uf.merge(v, X, w);
        }else if(type == 2){
            cin >> u >> v;
            ll d = uf.dist(u, v);
            cout << d << '\n';
            if(d != -1) (X += d) %= N;
        }else if(type == 3){
            cin >> v;
            cout << get<0>(uf.diameter[uf.leader(v)]) << '\n';
        }else{
            cin >> v;
            X += v;
            if(X >= N) X -= N;
        }
    }
}
0