結果
問題 | No.898 tri-βutree |
ユーザー | ttttan2 |
提出日時 | 2019-10-05 18:51:34 |
言語 | C++11 (gcc 11.4.0) |
結果 |
AC
|
実行時間 | 2,582 ms / 4,000 ms |
コード長 | 2,607 bytes |
コンパイル時間 | 3,785 ms |
コンパイル使用メモリ | 168,948 KB |
実行使用メモリ | 86,400 KB |
最終ジャッジ日時 | 2024-11-08 22:54:54 |
合計ジャッジ時間 | 40,971 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 344 ms
86,400 KB |
testcase_01 | AC | 16 ms
22,528 KB |
testcase_02 | AC | 16 ms
22,528 KB |
testcase_03 | AC | 16 ms
22,528 KB |
testcase_04 | AC | 16 ms
22,528 KB |
testcase_05 | AC | 15 ms
22,400 KB |
testcase_06 | AC | 17 ms
22,400 KB |
testcase_07 | AC | 2,424 ms
82,048 KB |
testcase_08 | AC | 2,290 ms
82,048 KB |
testcase_09 | AC | 2,246 ms
82,048 KB |
testcase_10 | AC | 2,397 ms
82,048 KB |
testcase_11 | AC | 2,454 ms
82,176 KB |
testcase_12 | AC | 2,455 ms
82,048 KB |
testcase_13 | AC | 2,485 ms
82,176 KB |
testcase_14 | AC | 2,468 ms
81,920 KB |
testcase_15 | AC | 2,485 ms
82,048 KB |
testcase_16 | AC | 2,406 ms
82,048 KB |
testcase_17 | AC | 2,324 ms
82,048 KB |
testcase_18 | AC | 2,507 ms
82,048 KB |
testcase_19 | AC | 2,582 ms
82,048 KB |
testcase_20 | AC | 2,419 ms
82,176 KB |
testcase_21 | AC | 2,428 ms
82,176 KB |
ソースコード
#include<bits/stdc++.h> //ios::sync_with_stdio(false);cin.tie(0); using namespace std; typedef long long ll; typedef unsigned long long ull; typedef pair<int,int> pii; typedef pair<pii,int> ppii; typedef pair<int,pii> pipi; typedef pair<ll,ll> pll; typedef pair<pll,ll> ppll; typedef pair<ll,pll> plpl; typedef tuple<ll,ll,ll> tl; ll mod=1000000007; ll mod2=998244353; ll mod3=1000003; ll mod4=998244853; ll inf=1000000000000000000; double pi=2*acos(0); #define rep(i,m,n) for(ll i=m;i<n;i++) #define rrep(i,n,m) for(ll i=n;i>=m;i--) int dh[4]={1,-1,0,0}; int dw[4]={0,0,1,-1}; int ddh[8]={-1,-1,-1,0,0,1,1,1}; int ddw[8]={-1,0,1,-1,1,-1,0,1}; ll lmax(ll a,ll b){ if(a<b)return b; else return a; } ll lmin(ll a,ll b){ if(a<b)return a; else return b; } ll gcd(ll a,ll b){ if(a<b)swap(a,b); if(b==0)return a; if(a%b==0)return b; return gcd(b,a%b); } ll Pow(ll n,ll k){ ll ret=1; ll now=n; while(k>0){ if(k&1)ret*=now; now*=now; k/=2; } return ret; } ll ne; vector<ll> vn[800010]; ll par[60][800010]; ll dep[800010]; void lcadfs(ll v,ll p,ll d){ par[0][v]=p; dep[v]=d; for(ll i=0;i<vn[v].size();i++){ if(vn[v][i]!=p)lcadfs(vn[v][i],v,d+1); } } void lcainit(ll n){ lcadfs(ne,-1,0); for(ll i=0;i<59;i++){ for(ll j=0;j<n;j++){ if(par[i][j]<0)par[i+1][j]=-1; else par[i+1][j]=par[i][par[i][j]]; } } } ll lca(ll u,ll v){ if(dep[u]>dep[v])swap(u,v); for(ll i=0;i<60;i++){ if((dep[v]-dep[u])>>i&1)v=par[i][v]; } if(u==v)return u; for(ll i=59;i>=0;i--){ if(par[i][u]!=par[i][v]){ u=par[i][u]; v=par[i][v]; } } return par[0][u]; } int main(){ ll n;cin>>n; vector<pll> v[n]; ne=0; rep(i,0,n-1){ ll a,b,c;cin>>a>>b>>c; vn[a].push_back(b); vn[b].push_back(a); v[a].push_back({b,c}); v[b].push_back({a,c}); } lcainit(n); ll d[n]; fill(d,d+n,-1); d[0]=0; queue<ll> q; q.push(0); while(q.size()>0){ ll now=q.front(); q.pop(); rep(i,0,v[now].size()){ pll p=v[now][i]; ll ne=p.first; ll co=p.second; if(d[ne]>=0)continue; d[ne]=d[now]+co; q.push(ne); } } ll qq;cin>>qq; rep(i,0,qq){ ll x,y,z;cin>>x>>y>>z; ll s=lca(x,y); ll t=lca(y,z); ll u=lca(z,x); ll ans=d[x]+d[y]-2*d[s]+d[y]+d[z]-2*d[t] +d[z]+d[x]-2*d[u]; cout<<ans/2<<endl; } }