結果

問題 No.2337 Equidistant
ユーザー au7777au7777
提出日時 2023-07-02 21:58:55
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 1,848 ms / 4,000 ms
コード長 4,461 bytes
コンパイル時間 4,935 ms
コンパイル使用メモリ 239,040 KB
実行使用メモリ 48,140 KB
最終ジャッジ日時 2023-09-23 17:48:00
合計ジャッジ時間 25,098 ms
ジャッジサーバーID
(参考情報)
judge12 / judge11
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 20 ms
23,768 KB
testcase_01 AC 20 ms
23,864 KB
testcase_02 AC 19 ms
23,804 KB
testcase_03 AC 20 ms
23,792 KB
testcase_04 AC 19 ms
23,776 KB
testcase_05 AC 19 ms
23,812 KB
testcase_06 AC 26 ms
23,900 KB
testcase_07 AC 25 ms
23,940 KB
testcase_08 AC 26 ms
23,840 KB
testcase_09 AC 26 ms
23,868 KB
testcase_10 AC 26 ms
23,952 KB
testcase_11 AC 837 ms
32,736 KB
testcase_12 AC 844 ms
32,752 KB
testcase_13 AC 845 ms
32,684 KB
testcase_14 AC 836 ms
32,760 KB
testcase_15 AC 828 ms
32,768 KB
testcase_16 AC 856 ms
32,824 KB
testcase_17 AC 841 ms
32,684 KB
testcase_18 AC 840 ms
32,988 KB
testcase_19 AC 829 ms
32,812 KB
testcase_20 AC 829 ms
32,732 KB
testcase_21 AC 1,328 ms
48,140 KB
testcase_22 AC 729 ms
33,248 KB
testcase_23 AC 742 ms
33,472 KB
testcase_24 AC 1,803 ms
43,004 KB
testcase_25 AC 769 ms
33,580 KB
testcase_26 AC 1,848 ms
43,024 KB
testcase_27 AC 761 ms
33,520 KB
testcase_28 AC 768 ms
33,524 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
#include <atcoder/all>
typedef long long int ll;
using namespace std;
typedef pair<ll, ll> P;
using namespace atcoder;
template<typename T> using min_priority_queue = priority_queue<T, vector<T>, greater<T>>;
#define USE998244353
#ifdef USE998244353
const ll MOD = 998244353;
// const double PI = 3.141592653589;
using mint = modint998244353;
#else
const ll MOD = 1000000007;
using mint = modint1000000007;
#endif
const int MAX = 20000001;
long long fac[MAX], finv[MAX], inv[MAX];
void COMinit() {
    fac[0] = fac[1] = 1;
    finv[0] = finv[1] = 1;
    inv[1] = 1;
    for (int i = 2; i < MAX; i++){
        fac[i] = fac[i - 1] * i % MOD;
        inv[i] = MOD - inv[MOD%i] * (MOD / i) % MOD;
        finv[i] = finv[i - 1] * inv[i] % MOD;
    }
}
long long COM(int n, int k){
    if (n < k) return 0;
    if (n < 0 || k < 0) return 0;
    return fac[n] * (finv[k] * finv[n - k] % MOD) % MOD;
}
ll gcd(ll x, ll y) {
   if (y == 0) return x;
   else if (y > x) {
       return gcd (y, x); 
   }
   else return gcd(x % y, y);
}
ll lcm(ll x, ll y) {
   return x / gcd(x, y) * y;
}
ll my_sqrt(ll x) {
    // 
    ll m = 0;
    ll M = 3000000001;
    while (M - m > 1) {
        ll now = (M + m) / 2;
        if (now * now <= x) {
            m = now;
        }
        else {
            M = now;
        }
    }
    return m;
}
ll keta(ll num, ll arity) {
    ll ret = 0;
    while (num) {
        num /= arity;
        ret++;
    }
    return ret;
}
ll ceil(ll n, ll m) {
    // n > 0, m > 0
    ll ret = n / m;
    if (n % m) ret++;
    return ret;
}
ll pow_ll(ll x, ll n) {
    if (n == 0) return 1;
    if (n % 2) {
        return pow_ll(x, n - 1) * x;
    }
    else {
        ll tmp = pow_ll(x, n / 2);
        return tmp * tmp;
    }
}
vector<ll> compress(vector<ll>& v) {
    // [3 5 5 6 1 1 10 1] -> [1 2 2 3 0 0 4 0] 
    vector<ll> u = v;
    sort(u.begin(), u.end());
    u.erase(unique(u.begin(),u.end()),u.end());
    map<ll, ll> mp;
    for (int i = 0; i < u.size(); i++) {
        mp[u[i]] = i;
    }
    for (int i = 0; i < v.size(); i++) {
        v[i] = mp[v[i]];
    }
    return v;
}


int Par[200000];
int dep[200000];
int des[200000];
vector<int> edge[200000];
int dou[200000][18];
int dfs(int cur, int par, int d) {
    dep[cur] = d;
    Par[cur] = par;
    int ret = 1;
    for (auto nex : edge[cur]) {
        if (nex == par) continue;
        ret += dfs(nex, cur, d + 1);
    }
    des[cur] = ret;
    return ret;
}

int anc(int x, int i) {
    for (int bit = 0; bit < 18; bit++) {
        if ((i >> bit) & 1) x = dou[x][bit];
    }
    return x;
}

int common_anc(int x, int y) {
    int M = 200001;
    int m = -1;
    // cout << "Hi " << x << ' ' << y << ' ' << dep[x] << ' ' << dep[y] << '\n';
    if (dep[x] > dep[y]) {
        x = anc(x, dep[x] - dep[y]);
    }
    else {
        y = anc(y, dep[y] - dep[x]);
    }
    // cout << "Hi2 " << x << ' ' << y << '\n';
    assert(dep[x] == dep[y]);
    while (M - m > 1) {
        int mid = (M + m) / 2;
        if (anc(x, mid) == anc(y, mid)) {
            M = mid;
        }
        else {
            m = mid;
        }
    }
    return anc(x, M);
}

int main() {
    int n, q;
    cin >> n >> q;
    for (int i = 1; i <= n - 1; i++) {
        int a, b;
        cin >> a >> b;
        a--;
        b--;
        edge[a].push_back(b);
        edge[b].push_back(a);
    }
    dfs(0, 0, 0);
    for (int i = 0; i < 200000; i++) dou[i][0] = Par[i];
    for (int i = 0; i < 17; i++) {
        for (int j = 0; j < 200000; j++) {
            dou[j][i + 1] = dou[dou[j][i]][i];
        }
    }

    vector<int> ans(q);
    for (int i = 0; i < q; i++) {
        int s, t;
        cin >> s >> t;
        s--;
        t--;
        int p = common_anc(s, t);
        int x = dep[s] - dep[p];
        int y = dep[t] - dep[p];
        if ((x + y) % 2) {
            ans[i] = 0;
            continue;
        }
        int k = (x + y) / 2;
        if (x == y) {
            int z = anc(s, k - 1);
            int w = anc(t, k - 1);
            // cout << s << ' ' << t << ' ' << p << ' ' << z << ' ' << w << endl;
            ans[i] = n - des[z] - des[w];
            continue;
        }
        if (x < y) {
            swap(s, t);
        }
        int z = anc(s, k);
        int w = anc(s, k - 1);
        // cout << s << ' ' << t << ' ' << p << ' ' << z << ' ' << w << endl;
        ans[i] = des[z] - des[w];
    }
    for (auto x : ans) cout << x << endl;
    return 0;
}
0