結果
問題 | No.2337 Equidistant |
ユーザー | milanis48663220 |
提出日時 | 2023-06-02 22:16:25 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
AC
|
実行時間 | 1,131 ms / 4,000 ms |
コード長 | 4,503 bytes |
コンパイル時間 | 1,565 ms |
コンパイル使用メモリ | 130,016 KB |
実行使用メモリ | 57,632 KB |
最終ジャッジ日時 | 2024-06-08 23:33:21 |
合計ジャッジ時間 | 17,374 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
5,248 KB |
testcase_01 | AC | 1 ms
5,376 KB |
testcase_02 | AC | 2 ms
5,376 KB |
testcase_03 | AC | 2 ms
5,376 KB |
testcase_04 | AC | 2 ms
5,376 KB |
testcase_05 | AC | 2 ms
5,376 KB |
testcase_06 | AC | 7 ms
5,376 KB |
testcase_07 | AC | 6 ms
5,376 KB |
testcase_08 | AC | 6 ms
5,376 KB |
testcase_09 | AC | 6 ms
5,376 KB |
testcase_10 | AC | 6 ms
5,376 KB |
testcase_11 | AC | 700 ms
53,664 KB |
testcase_12 | AC | 728 ms
53,540 KB |
testcase_13 | AC | 709 ms
53,544 KB |
testcase_14 | AC | 679 ms
53,540 KB |
testcase_15 | AC | 715 ms
53,544 KB |
testcase_16 | AC | 686 ms
53,664 KB |
testcase_17 | AC | 716 ms
53,536 KB |
testcase_18 | AC | 689 ms
53,532 KB |
testcase_19 | AC | 723 ms
53,664 KB |
testcase_20 | AC | 717 ms
53,664 KB |
testcase_21 | AC | 803 ms
57,632 KB |
testcase_22 | AC | 617 ms
55,572 KB |
testcase_23 | AC | 621 ms
55,248 KB |
testcase_24 | AC | 1,028 ms
54,680 KB |
testcase_25 | AC | 681 ms
55,240 KB |
testcase_26 | AC | 1,131 ms
54,556 KB |
testcase_27 | AC | 685 ms
55,240 KB |
testcase_28 | AC | 687 ms
55,244 KB |
ソースコード
#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; } class Lca{ public: vector<int> depth; vector<vector<int>> parent; vector<int> subtree_size; vector<vector<int>> G; int root; int n; const int N_LOG_MAX = 20; bool initialized = false; Lca(vector<vector<int>> g, int _root){ n = g.size(); G = g; root = _root; subtree_size = vector<int>(n, 0); parent = vector<vector<int>>(N_LOG_MAX, vector<int>(n)); depth = vector<int>(n, 0); } void init(){ initialized = true; dfs(root, -1, 0); for(int i = 0; i < N_LOG_MAX-1; i++){ for(int v = 0; v < n; v++){ if(parent[i][v] < 0) parent[i+1][v] = -1; else parent[i+1][v] = parent[i][parent[i][v]]; } } } int lca(int u, int v){ assert(initialized); if(depth[u] > depth[v]) swap(u, v); for(int i = 0; i < N_LOG_MAX; i++){ if((depth[v] - depth[u]) >> i & 1){ v = parent[i][v]; } } if(u == v) return u; for(int i = N_LOG_MAX-1; i >= 0; i--){ if(parent[i][u] != parent[i][v]) { u = parent[i][u]; v = parent[i][v]; } } return parent[0][u]; } int dist(int u, int v){ int l = lca(u, v); return depth[u]+depth[v]-2*depth[l]; } int go_parent(int v, int cnt){ int cur = v; for(int i = 0; i < N_LOG_MAX; i++){ if(cnt&(1<<i)) cur = parent[i][cur]; } return cur; } private: void dfs(int v, int p, int d){ subtree_size[v] = 1; parent[0][v] = p; depth[v] = d; for(int i = 0; i < G[v].size(); i++){ if(G[v][i] != p) { dfs(G[v][i], v, d+1); subtree_size[v] += subtree_size[G[v][i]]; } } } }; int main(){ ios::sync_with_stdio(false); cin.tie(0); cout << setprecision(10) << fixed; int n, q; cin >> n >> q; vector<vector<int>> g(n); for(int i = 0; i < n-1; i++){ int a, b; cin >> a >> b; a--; b--; g[a].push_back(b); g[b].push_back(a); } auto lca = Lca(g, 0); lca.init(); while(q--){ int s, t; cin >> s >> t; s--; t--; if(lca.depth[s] > lca.depth[t]) swap(s, t); auto l = lca.lca(s, t); if(lca.depth[s] == lca.depth[t]){ int d = lca.depth[s]-lca.depth[l]; int ss = lca.go_parent(s, d-1); int tt = lca.go_parent(t, d-1); int ans = n-lca.subtree_size[ss]-lca.subtree_size[tt]; cout << ans << endl; }else{ int dist_st = lca.dist(s, t); if(dist_st%2 == 1){ cout << 0 << endl; continue; } int d = dist_st/2; int c = lca.go_parent(t, d); int c_ch = lca.go_parent(t, d-1); int ans = lca.subtree_size[c]-lca.subtree_size[c_ch]; cout << ans << endl; } } }