結果
問題 | No.1094 木登り / Climbing tree |
ユーザー | recososo |
提出日時 | 2020-10-21 21:55:39 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
AC
|
実行時間 | 849 ms / 2,000 ms |
コード長 | 2,556 bytes |
コンパイル時間 | 2,203 ms |
コンパイル使用メモリ | 184,216 KB |
実行使用メモリ | 46,232 KB |
最終ジャッジ日時 | 2024-11-08 07:09:18 |
合計ジャッジ時間 | 22,228 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 3 ms
5,248 KB |
testcase_01 | AC | 804 ms
42,752 KB |
testcase_02 | AC | 128 ms
46,232 KB |
testcase_03 | AC | 173 ms
5,248 KB |
testcase_04 | AC | 186 ms
20,096 KB |
testcase_05 | AC | 317 ms
37,376 KB |
testcase_06 | AC | 374 ms
14,976 KB |
testcase_07 | AC | 796 ms
42,752 KB |
testcase_08 | AC | 800 ms
42,752 KB |
testcase_09 | AC | 802 ms
42,752 KB |
testcase_10 | AC | 849 ms
42,752 KB |
testcase_11 | AC | 847 ms
42,624 KB |
testcase_12 | AC | 807 ms
42,624 KB |
testcase_13 | AC | 802 ms
42,752 KB |
testcase_14 | AC | 800 ms
42,752 KB |
testcase_15 | AC | 413 ms
12,288 KB |
testcase_16 | AC | 616 ms
35,948 KB |
testcase_17 | AC | 533 ms
22,364 KB |
testcase_18 | AC | 485 ms
17,476 KB |
testcase_19 | AC | 606 ms
30,164 KB |
testcase_20 | AC | 826 ms
42,752 KB |
testcase_21 | AC | 532 ms
23,548 KB |
testcase_22 | AC | 825 ms
42,752 KB |
testcase_23 | AC | 802 ms
42,624 KB |
testcase_24 | AC | 788 ms
42,752 KB |
testcase_25 | AC | 812 ms
42,752 KB |
testcase_26 | AC | 799 ms
42,752 KB |
ソースコード
#include<bits/stdc++.h> using namespace std; typedef long long ll; typedef long double ld; #define REP(i, n) for (int i = 0; i < (n); ++i) #define REPR(i, n) for (int i = n - 1; i >= 0; --i) #define FOR(i, m, n) for (int i = m; i < n; ++i) #define FORR(i, m, n) for (int i = m; i >= n; --i) #define ALL(v) (v).begin(),(v).end() template<class T>bool chmax(T &a, const T &b) { if (a<b) { a=b; return 1; } return 0; } template<class T>bool chmin(T &a, const T &b) { if (b<a) { a=b; return 1; } return 0; } const ll INF=1LL<<60; const int inf=(1<<30)-1; const int mod=1e9+7; int dx[8]={1,0,-1,0,-1,-1,1,1}; int dy[8]={0,1,0,-1,-1,1,-1,1}; template< typename G > struct DoublingLowestCommonAncestor { const int LOG; vector< int > dep; const G &g; vector< vector< int > > table; DoublingLowestCommonAncestor(const G &g) : g(g), dep(g.size()), LOG(32 - __builtin_clz(g.size())) { table.assign(LOG, vector< int >(g.size(), -1)); } void dfs(int idx, int par, int d) { table[0][idx] = par; dep[idx] = d; for(auto &to : g[idx]) { if(to != par) dfs(to, idx, d + 1); } } void build() { dfs(0, -1, 0); for(int k = 0; k + 1 < LOG; k++) { for(int i = 0; i < table[k].size(); i++) { if(table[k][i] == -1) table[k + 1][i] = -1; else table[k + 1][i] = table[k][table[k][i]]; } } } int query(int u, int v) { if(dep[u] > dep[v]) swap(u, v); for(int i = LOG - 1; i >= 0; i--) { if(((dep[v] - dep[u]) >> i) & 1) v = table[i][v]; } if(u == v) return u; for(int i = LOG - 1; i >= 0; i--) { if(table[i][u] != table[i][v]) { u = table[i][u]; v = table[i][v]; } } return table[0][u]; } }; int main(){ cin.tie(0); ios::sync_with_stdio(false); int n;cin >> n; vector<vector<int>> g(n); vector<vector<pair<int,int>>> e(n); REP(i,n-1){ int a,b,c;cin >> a >> b >> c; a--,b--; g[a].push_back(b);g[b].push_back(a); e[a].push_back({b,c});e[b].push_back({a,c}); } vector<int> d(n,-1); d[0]=0; stack<int> st; st.push(0); while(!st.empty()){ int p=st.top(); st.pop(); for(auto x:e[p]){ if(d[x.first]!=-1) continue; d[x.first]=d[p]+x.second; st.push(x.first); } } DoublingLowestCommonAncestor<vector<vector<int>>> lca(g); lca.build(); int q;cin >> q; REP(i,q){ int s,t;cin >> s >> t; s--,t--; cout << d[s]+d[t]-d[lca.query(s,t)]*2 << endl; } }