結果
問題 | No.1094 木登り / Climbing tree |
ユーザー | kotatsugame |
提出日時 | 2020-06-24 07:40:41 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 922 bytes |
コンパイル時間 | 717 ms |
コンパイル使用メモリ | 72,908 KB |
実行使用メモリ | 44,800 KB |
最終ジャッジ日時 | 2024-09-14 22:29:49 |
合計ジャッジ時間 | 20,805 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 8 ms
9,600 KB |
testcase_01 | WA | - |
testcase_02 | AC | 221 ms
44,800 KB |
testcase_03 | WA | - |
testcase_04 | WA | - |
testcase_05 | WA | - |
testcase_06 | WA | - |
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 | AC | 531 ms
17,408 KB |
testcase_16 | AC | 766 ms
36,352 KB |
testcase_17 | AC | 659 ms
25,600 KB |
testcase_18 | AC | 617 ms
21,632 KB |
testcase_19 | AC | 722 ms
32,000 KB |
testcase_20 | WA | - |
testcase_21 | AC | 667 ms
26,496 KB |
testcase_22 | WA | - |
testcase_23 | WA | - |
testcase_24 | WA | - |
testcase_25 | WA | - |
testcase_26 | WA | - |
コンパイルメッセージ
main.cpp:33:1: warning: ISO C++ forbids declaration of 'main' with no type [-Wreturn-type] 33 | main() | ^~~~
ソースコード
#include<iostream> #include<vector> using namespace std; int N; vector<pair<int,int> >G[2<<17]; int dep[2<<17],pr[18][2<<17]; long cost[2<<17]; void dfs(int u,int p,int d,int c) { dep[u]=d; cost[u]=c; pr[0][u]=p; for(pair<int,int>e:G[u])if(e.first!=p) { dfs(e.first,u,d+1,c+e.second); } } int lca(int u,int v) { if(dep[u]<dep[v])u^=v^=u^=v; for(int k=0;k<18;k++)if(dep[u]-dep[v]>>k&1) { u=pr[k][u]; } if(u==v)return u; for(int k=18;k--;)if(pr[k][u]!=pr[k][v]) { k=pr[k][u]; v=pr[k][v]; } return pr[0][u]; } main() { cin>>N; for(int i=1;i<N;i++) { int a,b,c;cin>>a>>b>>c; a--,b--; G[a].push_back(make_pair(b,c)); G[b].push_back(make_pair(a,c)); } dfs(0,-1,0,0); for(int k=1;k<18;k++)for(int i=0;i<N;i++) { pr[k][i]=pr[k-1][i]==-1?-1:pr[k-1][pr[k-1][i]]; } int Q;cin>>Q; for(;Q--;) { int u,v;cin>>u>>v; u--,v--; int w=lca(u,v); cout<<cost[u]+cost[v]-cost[w]*2<<endl; } }