結果

問題 No.2337 Equidistant
ユーザー srjywrdnprktsrjywrdnprkt
提出日時 2024-10-19 22:33:43
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 918 ms / 4,000 ms
コード長 3,087 bytes
コンパイル時間 3,114 ms
コンパイル使用メモリ 214,148 KB
実行使用メモリ 59,100 KB
最終ジャッジ日時 2024-10-19 22:34:05
合計ジャッジ時間 18,219 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,812 KB
testcase_01 AC 2 ms
6,820 KB
testcase_02 AC 2 ms
6,820 KB
testcase_03 AC 2 ms
6,820 KB
testcase_04 AC 2 ms
6,816 KB
testcase_05 AC 2 ms
6,816 KB
testcase_06 AC 6 ms
6,820 KB
testcase_07 AC 6 ms
6,820 KB
testcase_08 AC 6 ms
6,820 KB
testcase_09 AC 6 ms
6,816 KB
testcase_10 AC 6 ms
6,820 KB
testcase_11 AC 614 ms
50,612 KB
testcase_12 AC 622 ms
50,532 KB
testcase_13 AC 612 ms
50,424 KB
testcase_14 AC 583 ms
50,544 KB
testcase_15 AC 628 ms
50,528 KB
testcase_16 AC 617 ms
50,564 KB
testcase_17 AC 615 ms
50,616 KB
testcase_18 AC 590 ms
50,540 KB
testcase_19 AC 624 ms
50,592 KB
testcase_20 AC 600 ms
50,448 KB
testcase_21 AC 700 ms
59,100 KB
testcase_22 AC 543 ms
50,868 KB
testcase_23 AC 553 ms
51,420 KB
testcase_24 AC 839 ms
55,964 KB
testcase_25 AC 593 ms
51,404 KB
testcase_26 AC 918 ms
55,776 KB
testcase_27 AC 604 ms
51,388 KB
testcase_28 AC 634 ms
51,324 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>

using namespace std;
using ll = long long;

int main(){
    cin.tie(nullptr);
    ios_base::sync_with_stdio(false);

    ll N, A, B, Q, S, T, U, x;
    cin >> N >> Q;
    vector<vector<ll>> E(N);
    for (int i=0; i < N-1; i++){
        cin >> A >> B;
        A--; B--;
        E[A].push_back(B);
        E[B].push_back(A);
    }

    //部分木のサイズ
    vector<int> subt(N);
    auto subtree_size=[&](auto self, int from, int p)->void{
        subt[from]=1;
        for (auto to : E[from]){
            if (to == p) continue;
            self(self, to, from); subt[from] += subt[to];
        }
    };
    subtree_size(subtree_size, 0, -1);

    //根からの距離
    vector<ll> dist(N);
    auto depth=[&](auto self, int from, int p)->void{
        for (auto to : E[from]){
            if (to == p) continue;
            dist[to] = dist[from]+1;
            self(self, to, from);
        }
    };
    depth(depth, 0, -1);

    //vのLevel x ancestor
    const int LOG=20;
    vector par(LOG, vector<ll>(N, -1));
    auto ancestor=[&](auto self, int from, int p)->void{
        for (auto to : E[from]){
            if (to == p) continue;
            par[0][to] = from;
            self(self, to, from);
        }
    };
    ancestor(ancestor, 0, -1);
    for (int i=1; i<LOG; i++){
        for (int j=0; j<N; j++){
            if (par[i-1][j] != -1) par[i][j] = par[i-1][par[i-1][j]];
        }
    }
    auto la=[&](int v, int x)->int{
        for (int i=0; i<LOG; i++){
            if (x & (1<<i) && v != -1) v = par[i][v];
        }
        return v;
    };

    //uとvのLCA
    auto lca=[&](int u, int v)->int{
        if (dist[u] > dist[v]) swap(u, v);
        v = la(v, dist[v]-dist[u]);
        if (u == v) return u;
        for (int i=LOG-1; i>=0; i--){
            if (par[i][u] != par[i][v]) u = par[i][u], v = par[i][v];
        }
        return par[0][u];
    };
    auto distance=[&](int u, int v)->int{
        return dist[u]+dist[v]-dist[lca(u, v)]*2;
    };

    /*
       SとTを結ぶパスの中心の点の子のうち、
       S、Tの部分木に含まれないもの
       d(1, S) < d(1, T)のとき、
       x = d(S, T)として (x % 2 == 0)
       (Tのlevel x/2 ancestorの子の数-(Tのlevel x/2-1 ancestorの子の数)
       d(1, S) = d(1, T)のとき、
       N-(Tのlevel x/2-1 ancestorの子の数)-(Sのlevel x/2-1 ancestorの子の数)
    */

    while(Q--){
        cin >> S >> T;
        S--; T--;
        x = distance(S, T);
        if (x % 2 == 1) cout << 0 << endl;
        else{
            ll ans=0;
            x /= 2;
            if (dist[S] == dist[T]){
                ans += N;
                U = la(S, x-1);
                ans -= subt[U];
                U = la(T, x-1);
                ans -= subt[U];
            }
            else{
                if (dist[S] > dist[T]) swap(S, T);
                U = la(T, x);
                ans += subt[U];
                U = la(T, x-1);
                ans -= subt[U];
            }
            cout << ans << endl;
        }
    }

    return 0;
}
0