結果
問題 | No.1212 Second Path |
ユーザー | Chanyuh |
提出日時 | 2020-08-31 20:53:13 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 5,664 bytes |
コンパイル時間 | 1,685 ms |
コンパイル使用メモリ | 135,976 KB |
実行使用メモリ | 40,576 KB |
最終ジャッジ日時 | 2024-11-17 02:22:37 |
合計ジャッジ時間 | 26,320 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 426 ms
40,576 KB |
testcase_01 | AC | 925 ms
40,088 KB |
testcase_02 | AC | 958 ms
39,692 KB |
testcase_03 | AC | 922 ms
39,612 KB |
testcase_04 | AC | 904 ms
38,400 KB |
testcase_05 | AC | 930 ms
38,496 KB |
testcase_06 | AC | 326 ms
33,812 KB |
testcase_07 | WA | - |
testcase_08 | WA | - |
testcase_09 | WA | - |
testcase_10 | WA | - |
testcase_11 | WA | - |
testcase_12 | WA | - |
testcase_13 | WA | - |
testcase_14 | WA | - |
testcase_15 | WA | - |
testcase_16 | WA | - |
testcase_17 | AC | 399 ms
40,576 KB |
testcase_18 | WA | - |
testcase_19 | WA | - |
testcase_20 | WA | - |
testcase_21 | WA | - |
testcase_22 | WA | - |
testcase_23 | AC | 149 ms
5,888 KB |
testcase_24 | WA | - |
testcase_25 | AC | 152 ms
5,760 KB |
testcase_26 | WA | - |
testcase_27 | AC | 159 ms
5,760 KB |
testcase_28 | AC | 165 ms
5,760 KB |
testcase_29 | AC | 530 ms
40,484 KB |
testcase_30 | AC | 526 ms
40,576 KB |
testcase_31 | AC | 546 ms
40,388 KB |
testcase_32 | WA | - |
testcase_33 | WA | - |
testcase_34 | WA | - |
testcase_35 | WA | - |
testcase_36 | WA | - |
testcase_37 | WA | - |
testcase_38 | WA | - |
testcase_39 | WA | - |
testcase_40 | WA | - |
testcase_41 | WA | - |
testcase_42 | AC | 4 ms
6,016 KB |
testcase_43 | AC | 3 ms
5,888 KB |
testcase_44 | AC | 3 ms
5,888 KB |
testcase_45 | AC | 318 ms
33,940 KB |
testcase_46 | AC | 316 ms
33,940 KB |
testcase_47 | AC | 312 ms
33,940 KB |
ソースコード
#include<iostream> #include<string> #include<cstdio> #include<vector> #include<cmath> #include<algorithm> #include<functional> #include<iomanip> #include<queue> #include<ciso646> #include<random> #include<map> #include<set> #include<complex> #include<bitset> #include<stack> #include<unordered_map> #include<utility> #include<tuple> #include<cassert> using namespace std; typedef long long ll; typedef unsigned int ui; const ll mod = 1000000007; const ll INF = (ll)1000000007 * 1000000007; typedef pair<int, ll> P; #define stop char nyaa;cin>>nyaa; #define rep(i,n) for(int i=0;i<n;i++) #define per(i,n) for(int i=n-1;i>=0;i--) #define Rep(i,sta,n) for(int i=sta;i<n;i++) #define Per(i,sta,n) for(int i=n-1;i>=sta;i--) #define rep1(i,n) for(int i=1;i<=n;i++) #define per1(i,n) for(int i=n;i>=1;i--) #define Rep1(i,sta,n) for(int i=sta;i<=n;i++) typedef long double ld; const ld eps = 1e-8; const ld pi = acos(-1.0); typedef pair<ll, ll> LP; int dx[4]={1,-1,0,0}; int dy[4]={0,0,1,-1}; int n; vector<P> G[100010]; int depth[100010],par[100010][17]; ll len[100010],table[100010][17]; void dfs(int s,int p,ll w){ //cout << s << endl; if(p!=-1){ len[s]=len[p]+w; depth[s]=depth[p]+1; } par[s][0]=p; rep(k,16){ if(par[s][k]!=-1) par[s][k+1]=par[par[s][k]][k]; else par[s][k+1]=-1; //cout << s << " " << par[s][k+1] << endl; } for(P pa:G[s]){ int t=pa.first;ll w_=pa.second; //cout << t << " " << s << " " << w_ << endl; if(t==p || t==-1) continue; dfs(t,s,w_); } } int lca(int x,int y){ //cout << x << " " << y << endl; //cout << depth[x] << " " << depth[y] << endl; if(depth[x]<depth[y]) swap(x,y); int l=depth[x]-depth[y]; //cout << l << endl; rep(i,17){ if(l&(1 << i)){ x=par[x][i]; l^=(1 << i); } } //cout << x << " " << y << endl; if(x==y) return x; per(i,17){ if(par[x][i]!=par[y][i]){ x=par[x][i]; y=par[y][i]; } } return par[x][0]; } bool in_pass(int s,int t,int x){ //cout << s << " " << t << " " << x << endl; if(x==-1) return false; if(depth[s]>depth[t]) swap(s,t); if(depth[s]>depth[x]) return false; if(lca(t,x)==x) return true; return false; } void make_table(){ rep(i,n) table[i][0]=INF; rep(j,16){ rep(i,n){ ll res=INF; if(par[i][j+1]==-1){ table[i][j+1]=INF; continue; } for(P p:G[par[i][j]]){ int t=p.first;ll l=p.second; if(in_pass(par[i][j+1],i,t)) continue; int q=lca(i,t); //cout << par[i][j+1] << " " << i << " " << t << " " << q << " " << in_pass(par[i][j+1],i,t) << endl; res=l; break; } table[i][j+1]=min(res,min(table[i][j],table[par[i][j]][j])); } } } void solve(){ cin >> n; rep(i,n-1){ int a,b,c;cin >> a >> b >> c;a--;b--; G[a].push_back(P(b,c)); G[b].push_back(P(a,c)); } rep(i,n) G[i].push_back(P(-1,INF)); rep(i,n) sort(G[i].begin(),G[i].end(),[](P a,P b){return a.second<b.second;}); dfs(0,-1,0); make_table(); // rep(i,n){ // per(j,17){ // cout << i << " " << j << " " << table[i][j] << endl; // } // } int q;cin >> q; rep(_,q){ int u,v;cin >> u >> v;u--;v--; int l=lca(u,v); ll D=len[u]+len[v]-2*len[l]; //cout << u << " " << v << endl; if(u!=l && v!=l){ ll res=INF; int u_=u,v_=v; per(i,17){ if((depth[u_]-depth[l])&(1 << i)){ res=min(res,table[u_][i]); u_=par[u_][i]; } } per(i,17){ if((depth[v_]-depth[l])&(1 << i)){ res=min(res,table[v_][i]); v_=par[v_][i]; } } for(P p:G[u]){ int t=p.first;ll d=p.second; if(in_pass(u,l,t)) continue; res=min(res,d); break; } for(P p:G[v]){ int t=p.first;ll d=p.second; if(in_pass(v,l,t)) continue; res=min(res,d); break; } for(P p:G[l]){ int t=p.first;ll d=p.second; if(in_pass(u,l,t) || in_pass(v,l,t)) continue; res=min(res,d); break; } if(res==INF) cout << -1 << endl; else cout << 2*res+D << endl; continue; } if(v==l) swap(u,v); int v_=v; ll res=INF; per(i,17){ if((depth[v_]-depth[l])&(1 << i)) { res=min(res,table[v_][i]); v_=par[v_][i]; } } //cout << res << endl; for(P p:G[u]){ int t=p.first;ll d=p.second; //cout << v << " " << l << " " << t << " " << d << endl; if(in_pass(u,v,t)) continue; res=min(res,d); break; } for(P p:G[v]){ int t=p.first;ll d=p.second; //cout << v << " " << l << " " << t << " " << d << endl; if(in_pass(u,v,t)) continue; res=min(res,d); break; } if(res==INF) cout << -1 << endl; else cout << 2*res+D << endl; } } int main(){ ios::sync_with_stdio(false); cin.tie(0); cout << fixed << setprecision(50); solve(); }