結果

問題 No.1418 Sum of Sum of Subtree Size
ユーザー kwm_tkwm_t
提出日時 2021-09-23 14:54:27
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 68 ms / 2,000 ms
コード長 1,876 bytes
コンパイル時間 1,595 ms
コンパイル使用メモリ 170,132 KB
実行使用メモリ 26,396 KB
最終ジャッジ日時 2023-09-18 19:53:11
合計ジャッジ時間 5,923 ms
ジャッジサーバーID
(参考情報)
judge13 / judge11
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 8 ms
13,736 KB
testcase_01 AC 8 ms
13,956 KB
testcase_02 AC 8 ms
13,932 KB
testcase_03 AC 60 ms
17,216 KB
testcase_04 AC 63 ms
17,132 KB
testcase_05 AC 62 ms
17,196 KB
testcase_06 AC 67 ms
17,136 KB
testcase_07 AC 68 ms
17,004 KB
testcase_08 AC 40 ms
16,084 KB
testcase_09 AC 22 ms
14,952 KB
testcase_10 AC 23 ms
14,960 KB
testcase_11 AC 16 ms
14,440 KB
testcase_12 AC 32 ms
15,796 KB
testcase_13 AC 38 ms
16,200 KB
testcase_14 AC 38 ms
16,016 KB
testcase_15 AC 29 ms
15,556 KB
testcase_16 AC 10 ms
14,140 KB
testcase_17 AC 11 ms
14,300 KB
testcase_18 AC 54 ms
16,780 KB
testcase_19 AC 15 ms
14,568 KB
testcase_20 AC 9 ms
13,756 KB
testcase_21 AC 29 ms
15,548 KB
testcase_22 AC 26 ms
15,288 KB
testcase_23 AC 9 ms
13,728 KB
testcase_24 AC 10 ms
14,288 KB
testcase_25 AC 9 ms
13,756 KB
testcase_26 AC 9 ms
13,856 KB
testcase_27 AC 8 ms
13,968 KB
testcase_28 AC 8 ms
13,924 KB
testcase_29 AC 10 ms
14,220 KB
testcase_30 AC 10 ms
14,232 KB
testcase_31 AC 8 ms
13,760 KB
testcase_32 AC 9 ms
13,724 KB
testcase_33 AC 20 ms
16,916 KB
testcase_34 AC 65 ms
26,396 KB
testcase_35 AC 29 ms
19,252 KB
testcase_36 AC 11 ms
14,500 KB
testcase_37 AC 39 ms
17,268 KB
testcase_38 AC 35 ms
16,940 KB
testcase_39 AC 8 ms
13,732 KB
testcase_40 AC 8 ms
14,000 KB
testcase_41 AC 8 ms
13,728 KB
testcase_42 AC 7 ms
13,764 KB
testcase_43 AC 8 ms
13,780 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
//#include <atcoder/all>
using namespace std;
//using namespace atcoder;
//using mint = modint1000000007;
//const int mod = 1000000007;
//using mint = modint998244353;
//const int mod = 998244353;
//const int INF = 1e9;
//const long long LINF = 1e18;
//const bool debug = false;
#define rep(i, n) for (int i = 0; i < (n); ++i)
#define rep2(i,l,r)for(int i=(l);i<(r);++i)
#define rrep(i, n) for (int i = (n-1); i >= 0; --i)
#define rrep2(i,l,r)for(int i=(r-1);i>=(l);--i)
#define all(x) (x).begin(),(x).end()
#define allR(x) (x).rbegin(),(x).rend()
#define endl "\n"
#define P pair<long long,long long>
template<typename A, typename B> inline bool chmax(A & a, const B & b) { if (a < b) { a = b; return true; } return false; }
template<typename A, typename B> inline bool chmin(A & a, const B & b) { if (a > b) { a = b; return true; } return false; }
vector<int>to[200005];
vector<P>dp(200005);
vector<P>dpR(200005);
void dfs(int v,int p = -1){
  P val ={1,1};
  for(auto nv :to[v]){
    if(p == nv)continue;
    dfs(nv,v);
    val.first += dp[nv].first + dp[nv].second;
    val.second += dp[nv].second;
  }
  dp[v] = val;
}
void dfsR(int v,int p = -1){
  dpR[v] = dp[v];
  if(-1 != p){
    P subp = dpR[p];
    subp.first -= dp[v].first + dp[v].second;
    subp.second -= dp[v].second;
    dpR[v].first += subp.first + subp.second;
    dpR[v].second += subp.second;
  } 
  for(auto nv :to[v]){
    if(p == nv)continue;
    dfsR(nv,v);
  }
}
int main() {
	ios::sync_with_stdio(false);
	cin.tie(nullptr);
  int n;cin >>n;
	rep(i,n-1) {
		int a, b;cin >> a >> b;a--;b--;
		to[a].push_back(b);
		to[b].push_back(a);
	}
	dfs(0);
  //rep(i,n)cout << dp[i].first <<" " << dp[i].second << endl;
  dfsR(0);
  //rep(i,n)cout << dpR[i].first <<" " << dpR[i].second << endl;
  long long ans = 0;
  rep(i,n)ans += dpR[i].first;
  cout << ans << endl;
  return 0;
}
0