結果

問題 No.1418 Sum of Sum of Subtree Size
ユーザー y61mpnly61mpnl
提出日時 2021-03-06 00:38:59
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 56 ms / 2,000 ms
コード長 832 bytes
コンパイル時間 2,499 ms
コンパイル使用メモリ 203,824 KB
実行使用メモリ 19,028 KB
最終ジャッジ日時 2024-10-07 07:15:10
合計ジャッジ時間 4,086 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 4 ms
6,272 KB
testcase_01 AC 3 ms
6,016 KB
testcase_02 AC 4 ms
6,144 KB
testcase_03 AC 49 ms
11,420 KB
testcase_04 AC 47 ms
11,484 KB
testcase_05 AC 56 ms
11,628 KB
testcase_06 AC 49 ms
11,488 KB
testcase_07 AC 47 ms
11,628 KB
testcase_08 AC 32 ms
9,804 KB
testcase_09 AC 16 ms
8,192 KB
testcase_10 AC 18 ms
8,192 KB
testcase_11 AC 11 ms
7,296 KB
testcase_12 AC 25 ms
9,088 KB
testcase_13 AC 29 ms
9,584 KB
testcase_14 AC 29 ms
9,752 KB
testcase_15 AC 22 ms
8,832 KB
testcase_16 AC 5 ms
6,400 KB
testcase_17 AC 5 ms
6,400 KB
testcase_18 AC 41 ms
11,148 KB
testcase_19 AC 10 ms
7,168 KB
testcase_20 AC 4 ms
6,400 KB
testcase_21 AC 23 ms
8,664 KB
testcase_22 AC 20 ms
8,448 KB
testcase_23 AC 4 ms
6,272 KB
testcase_24 AC 4 ms
6,144 KB
testcase_25 AC 4 ms
6,272 KB
testcase_26 AC 4 ms
6,144 KB
testcase_27 AC 3 ms
6,016 KB
testcase_28 AC 3 ms
6,016 KB
testcase_29 AC 4 ms
6,272 KB
testcase_30 AC 5 ms
6,272 KB
testcase_31 AC 4 ms
6,272 KB
testcase_32 AC 4 ms
6,272 KB
testcase_33 AC 13 ms
9,088 KB
testcase_34 AC 48 ms
19,028 KB
testcase_35 AC 21 ms
11,648 KB
testcase_36 AC 6 ms
6,784 KB
testcase_37 AC 30 ms
11,408 KB
testcase_38 AC 28 ms
10,988 KB
testcase_39 AC 3 ms
6,144 KB
testcase_40 AC 4 ms
6,016 KB
testcase_41 AC 3 ms
6,016 KB
testcase_42 AC 3 ms
6,144 KB
testcase_43 AC 4 ms
6,144 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<bits/stdc++.h>
#define REP(i,b,e) for(int i=b;i<e;i++)
using ll = int_fast64_t;

std::vector<int> links[100000], visit;
int in[100000], out[100000], from[100000];
ll cnt[100001];
bool used[100000];

void eular_tour(int v=0){
	if(used[v]) return;
	used[v] = true;
	in[v] = visit.size();
	visit.push_back(v);
	for(auto to: links[v]){
		if(!used[to]){
			from[to] = v;
			eular_tour(to);
		}
	}
	out[v] = visit.size();
}

int main(){
	ll n;
	scanf("%ld", &n);
	REP(i, 0, n-1){
		int a, b;
		scanf("%d %d", &a, &b);
		links[a-1].push_back(b-1);
		links[b-1].push_back(a-1);
	}

	eular_tour();
	REP(i, 0, n) cnt[i] = out[i] - in[i];

	ll ans = 0;
	REP(i, 0, n){
		ans += n;
		for(auto x: links[i]){
			if(from[i]!=x) ans += cnt[x] * (n - cnt[x]);
			else ans += cnt[i] * (n - cnt[i]);
		}
	}
	printf("%ld\n", ans);
	return 0;
}
0