結果

問題 No.1418 Sum of Sum of Subtree Size
ユーザー 蜜蜂蜜蜂
提出日時 2021-03-05 21:38:08
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
TLE  
実行時間 -
コード長 873 bytes
コンパイル時間 1,558 ms
コンパイル使用メモリ 172,828 KB
実行使用メモリ 218,236 KB
最終ジャッジ日時 2024-10-07 01:01:13
合計ジャッジ時間 5,368 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
10,496 KB
testcase_01 AC 2 ms
5,248 KB
testcase_02 AC 1 ms
5,248 KB
testcase_03 TLE -
testcase_04 -- -
testcase_05 -- -
testcase_06 -- -
testcase_07 -- -
testcase_08 -- -
testcase_09 -- -
testcase_10 -- -
testcase_11 -- -
testcase_12 -- -
testcase_13 -- -
testcase_14 -- -
testcase_15 -- -
testcase_16 -- -
testcase_17 -- -
testcase_18 -- -
testcase_19 -- -
testcase_20 -- -
testcase_21 -- -
testcase_22 -- -
testcase_23 -- -
testcase_24 -- -
testcase_25 -- -
testcase_26 -- -
testcase_27 -- -
testcase_28 -- -
testcase_29 -- -
testcase_30 -- -
testcase_31 -- -
testcase_32 -- -
testcase_33 -- -
testcase_34 -- -
testcase_35 -- -
testcase_36 -- -
testcase_37 -- -
testcase_38 -- -
testcase_39 -- -
testcase_40 -- -
testcase_41 -- -
testcase_42 -- -
testcase_43 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

//g++ 5.cpp -std=c++14 -I .
#include <bits/stdc++.h>
using namespace std;

using ll = long long;
using ld = long double;
#define fi first
#define se second
#define pb push_back

int x[100500];
int dist[100500];
int seen[100500]={};

void dfs(vector<vector<int>> g,int now){
  seen[now]=1;
  int z=0;
  for(int next:g[now]){
    if(seen[next]==0){
      dist[next]=dist[now]+1;
      dfs(g,next);
      z+=x[next];
    }
  }
  x[now]=z+1;
}

int main(){
  int n;
  cin>>n;
  vector<vector<int>> g(n);
  int v[n-1][2];
  for(int i=0;i<n-1;i++){
    int a,b;
    cin>>a>>b;
    a--;
    b--;
    g[a].pb(b);
    g[b].pb(a);
    v[i][0]=a,v[i][1]=b;
  }
  dist[0]=0;
  dfs(g,0);
  ll ans=0;
  
  for(int i=0;i<n-1;i++){
    int a=v[i][0],b=v[i][1];
    if(dist[a]>dist[b]){
      swap(a,b);
    }
    ans+=((ll)x[b])*(n-x[b]);
  }
  ans*=2;
  ans+=(ll)n*n;
  cout<<ans<<endl;
}
0