結果

問題 No.1418 Sum of Sum of Subtree Size
ユーザー chocoruskchocorusk
提出日時 2021-03-05 21:36:27
言語 C++17
(gcc 13.2.0 + boost 1.83.0)
結果
AC  
実行時間 109 ms / 2,000 ms
コード長 1,067 bytes
コンパイル時間 3,498 ms
コンパイル使用メモリ 185,804 KB
実行使用メモリ 17,536 KB
最終ジャッジ日時 2024-04-16 09:00:51
合計ジャッジ時間 6,390 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 4 ms
5,760 KB
testcase_01 AC 4 ms
5,888 KB
testcase_02 AC 3 ms
5,760 KB
testcase_03 AC 105 ms
9,728 KB
testcase_04 AC 102 ms
9,856 KB
testcase_05 AC 103 ms
9,856 KB
testcase_06 AC 101 ms
9,728 KB
testcase_07 AC 105 ms
9,728 KB
testcase_08 AC 64 ms
8,448 KB
testcase_09 AC 29 ms
7,040 KB
testcase_10 AC 33 ms
7,296 KB
testcase_11 AC 19 ms
6,656 KB
testcase_12 AC 51 ms
7,936 KB
testcase_13 AC 65 ms
8,448 KB
testcase_14 AC 64 ms
8,576 KB
testcase_15 AC 46 ms
7,936 KB
testcase_16 AC 8 ms
6,144 KB
testcase_17 AC 9 ms
6,016 KB
testcase_18 AC 94 ms
9,472 KB
testcase_19 AC 16 ms
6,528 KB
testcase_20 AC 5 ms
5,888 KB
testcase_21 AC 44 ms
7,680 KB
testcase_22 AC 38 ms
7,424 KB
testcase_23 AC 6 ms
6,144 KB
testcase_24 AC 6 ms
6,144 KB
testcase_25 AC 6 ms
6,016 KB
testcase_26 AC 6 ms
5,888 KB
testcase_27 AC 4 ms
6,144 KB
testcase_28 AC 5 ms
6,016 KB
testcase_29 AC 7 ms
6,144 KB
testcase_30 AC 7 ms
6,016 KB
testcase_31 AC 5 ms
5,888 KB
testcase_32 AC 6 ms
6,016 KB
testcase_33 AC 22 ms
8,576 KB
testcase_34 AC 109 ms
17,536 KB
testcase_35 AC 43 ms
10,752 KB
testcase_36 AC 11 ms
6,528 KB
testcase_37 AC 64 ms
9,588 KB
testcase_38 AC 59 ms
9,336 KB
testcase_39 AC 4 ms
5,760 KB
testcase_40 AC 3 ms
5,888 KB
testcase_41 AC 4 ms
5,888 KB
testcase_42 AC 4 ms
6,016 KB
testcase_43 AC 4 ms
5,760 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <cstdio>
#include <cstring>
#include <iostream>
#include <string>
#include <cmath>
#include <bitset>
#include <vector>
#include <map>
#include <set>
#include <queue>
#include <deque>
#include <algorithm>
#include <complex>
#include <unordered_map>
#include <unordered_set>
#include <random>
#include <cassert>
#include <fstream>
#include <utility>
#include <functional>
#include <time.h>
#include <stack>
#include <array>
#include <list>
#include <atcoder/all>
#define popcount __builtin_popcount
using namespace std;
using namespace atcoder;
typedef long long ll;
typedef pair<int, int> P;
ll n;
vector<int> g[100010];
ll cnt[100010];
ll ans;
void dfs(int x, int p){
    cnt[x]=1;
    for(auto y:g[x]){
        if(y==p) continue;
        dfs(y, x);
        cnt[x]+=cnt[y];
        ans+=cnt[y]*(n-cnt[y]);
    }
    ans+=cnt[x]*(n-cnt[x])+n;
}
int main()
{
    cin>>n;
    for(int i=0; i<n-1; i++){
        int a, b; cin>>a>>b;
        a--; b--;
        g[a].push_back(b);
        g[b].push_back(a);
    }
    dfs(0, -1);
    cout<<ans<<endl;
    return 0;
}
0