結果
問題 | No.399 動的な領主 |
ユーザー | legendcn666 |
提出日時 | 2024-10-13 00:23:32 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
AC
|
実行時間 | 285 ms / 2,000 ms |
コード長 | 1,169 bytes |
コンパイル時間 | 1,501 ms |
コンパイル使用メモリ | 169,936 KB |
実行使用メモリ | 24,448 KB |
最終ジャッジ日時 | 2024-10-13 00:23:42 |
合計ジャッジ時間 | 5,729 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 3 ms
6,016 KB |
testcase_01 | AC | 4 ms
5,888 KB |
testcase_02 | AC | 4 ms
6,016 KB |
testcase_03 | AC | 4 ms
5,888 KB |
testcase_04 | AC | 4 ms
6,016 KB |
testcase_05 | AC | 20 ms
7,040 KB |
testcase_06 | AC | 253 ms
18,048 KB |
testcase_07 | AC | 285 ms
18,048 KB |
testcase_08 | AC | 252 ms
18,304 KB |
testcase_09 | AC | 239 ms
18,304 KB |
testcase_10 | AC | 5 ms
6,144 KB |
testcase_11 | AC | 19 ms
7,168 KB |
testcase_12 | AC | 211 ms
18,688 KB |
testcase_13 | AC | 213 ms
18,432 KB |
testcase_14 | AC | 144 ms
24,320 KB |
testcase_15 | AC | 153 ms
24,448 KB |
testcase_16 | AC | 167 ms
20,864 KB |
testcase_17 | AC | 256 ms
18,304 KB |
testcase_18 | AC | 238 ms
18,304 KB |
ソースコード
# include <bits/stdc++.h> using namespace std; typedef long long ll; //# define int long long int N; vector<int> E[101010]; int P[21][200005],D[200005]; ll tot[200005]; ll ret; void dfs(int cur) { for (auto it : E[cur]) if(it!=P[0][cur]) D[it]=D[cur]+1, P[0][it]=cur, dfs(it); } int lca(int a,int b) { int ret=0,i,aa=a,bb=b; if(D[aa]>D[bb]) swap(aa,bb); for(i=19;i>=0;i--) if(D[bb]-D[aa]>=1<<i) bb=P[i][bb]; for(i=19;i>=0;i--) if(P[i][aa]!=P[i][bb]) aa=P[i][aa], bb=P[i][bb]; return (aa==bb)?aa:P[0][aa]; // vertex } void dfs2(int cur,int pre) { for (auto e : E[cur]) if(e!=pre) dfs2(e,cur); if(pre>=1) tot[pre] += tot[cur]; ret += tot[cur]*(tot[cur]+1)/2; } signed main () { // freopen ("tax.in", "r", stdin); freopen ("tax.out", "w", stdout); int i,j,k,l,r,x,y; string s; cin>>N; for (int i = 1; i < N; i ++ ) { cin>>x>>y; E[x].push_back(y); E[y].push_back(x); } dfs(1); for (int i = 0; i < 19; i ++ ) for (int x = 1; x <= N; x ++ ) P[i+1][x]=P[i][P[i][x]]; cin>>i; while(i--) { cin>>x>>y; int lc=lca(x,y); tot[x]++; tot[y]++; tot[lc]--; if(lc!=1) tot[P[0][lc]]--; } dfs2(1,0); cout<<ret<<endl; }