結果

問題 No.1418 Sum of Sum of Subtree Size
ユーザー tada721tada721
提出日時 2021-02-05 19:07:27
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 101 ms / 2,000 ms
コード長 991 bytes
コンパイル時間 567 ms
コンパイル使用メモリ 73,556 KB
実行使用メモリ 25,216 KB
最終ジャッジ日時 2024-07-02 21:33:54
合計ジャッジ時間 3,403 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 4 ms
8,064 KB
testcase_01 AC 4 ms
8,192 KB
testcase_02 AC 4 ms
8,320 KB
testcase_03 AC 98 ms
18,432 KB
testcase_04 AC 97 ms
18,688 KB
testcase_05 AC 98 ms
18,560 KB
testcase_06 AC 101 ms
18,432 KB
testcase_07 AC 99 ms
18,560 KB
testcase_08 AC 65 ms
15,232 KB
testcase_09 AC 32 ms
11,520 KB
testcase_10 AC 34 ms
11,648 KB
testcase_11 AC 19 ms
10,240 KB
testcase_12 AC 53 ms
13,824 KB
testcase_13 AC 57 ms
14,592 KB
testcase_14 AC 62 ms
14,976 KB
testcase_15 AC 46 ms
13,312 KB
testcase_16 AC 7 ms
8,832 KB
testcase_17 AC 7 ms
8,832 KB
testcase_18 AC 81 ms
17,664 KB
testcase_19 AC 18 ms
9,984 KB
testcase_20 AC 5 ms
8,320 KB
testcase_21 AC 45 ms
13,184 KB
testcase_22 AC 41 ms
12,544 KB
testcase_23 AC 7 ms
8,448 KB
testcase_24 AC 7 ms
8,576 KB
testcase_25 AC 6 ms
8,448 KB
testcase_26 AC 6 ms
8,448 KB
testcase_27 AC 4 ms
8,192 KB
testcase_28 AC 4 ms
8,192 KB
testcase_29 AC 6 ms
8,576 KB
testcase_30 AC 6 ms
8,704 KB
testcase_31 AC 5 ms
8,448 KB
testcase_32 AC 5 ms
8,448 KB
testcase_33 AC 21 ms
12,032 KB
testcase_34 AC 98 ms
25,216 KB
testcase_35 AC 43 ms
15,360 KB
testcase_36 AC 11 ms
9,400 KB
testcase_37 AC 67 ms
18,212 KB
testcase_38 AC 60 ms
17,448 KB
testcase_39 AC 4 ms
8,064 KB
testcase_40 AC 3 ms
8,064 KB
testcase_41 AC 3 ms
8,192 KB
testcase_42 AC 3 ms
8,320 KB
testcase_43 AC 3 ms
8,192 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<iostream>
#include<vector>
#include<algorithm>
#define ll long long
#define rep(i,n) for(ll i=0;i<n;i++)
using namespace std;
ll depth[100100],subtreesize[100100];
ll a[100100],b[100100];
vector<ll> edge[100100],v[100100];
void dfs(ll r,ll p,ll d){
	depth[r]=d;
	rep(i,edge[r].size())if(edge[r][i]!=p)dfs(edge[r][i],r,d+1);
	rep(i,edge[r].size())if(edge[r][i]!=p)subtreesize[r]+=subtreesize[edge[r][i]];	
	subtreesize[r]++;
}
int main(){
	ll n;
	cin>>n;
	rep(i,n-1){
		cin>>a[i]>>b[i];
		a[i]--,b[i]--;
		edge[a[i]].push_back(b[i]);
		edge[b[i]].push_back(a[i]);
	}
	rep(i,n){
		if(edge[i].size()==1){
			dfs(i,-1,0);
			break;
		}
	}	
	rep(i,n-1){
		if(depth[a[i]]>depth[b[i]]){
			v[a[i]].push_back(n-subtreesize[a[i]]);
			v[b[i]].push_back(subtreesize[a[i]]);
		}
		else{
			v[b[i]].push_back(n-subtreesize[b[i]]);
			v[a[i]].push_back(subtreesize[b[i]]);
		}
	}
	ll ans=0;
	rep(i,n){
		ans+=2*n-1;
		rep(j,v[i].size()){
			ans+=v[i][j]*(n-1-v[i][j]);
		}
	}
	cout<<ans<<endl;
}
0