結果

問題 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  
実行時間 50 ms / 2,000 ms
コード長 1,876 bytes
コンパイル時間 1,385 ms
コンパイル使用メモリ 171,284 KB
実行使用メモリ 26,368 KB
最終ジャッジ日時 2024-07-05 09:27:17
合計ジャッジ時間 4,150 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 7 ms
14,140 KB
testcase_01 AC 7 ms
14,080 KB
testcase_02 AC 7 ms
14,124 KB
testcase_03 AC 49 ms
17,408 KB
testcase_04 AC 49 ms
17,280 KB
testcase_05 AC 50 ms
17,280 KB
testcase_06 AC 48 ms
17,280 KB
testcase_07 AC 49 ms
17,404 KB
testcase_08 AC 33 ms
16,256 KB
testcase_09 AC 20 ms
15,232 KB
testcase_10 AC 20 ms
15,232 KB
testcase_11 AC 14 ms
14,720 KB
testcase_12 AC 29 ms
15,872 KB
testcase_13 AC 32 ms
16,128 KB
testcase_14 AC 33 ms
16,200 KB
testcase_15 AC 26 ms
15,616 KB
testcase_16 AC 10 ms
14,336 KB
testcase_17 AC 9 ms
14,208 KB
testcase_18 AC 44 ms
17,024 KB
testcase_19 AC 14 ms
14,720 KB
testcase_20 AC 9 ms
14,316 KB
testcase_21 AC 26 ms
15,744 KB
testcase_22 AC 24 ms
15,460 KB
testcase_23 AC 8 ms
14,268 KB
testcase_24 AC 7 ms
14,208 KB
testcase_25 AC 7 ms
14,208 KB
testcase_26 AC 8 ms
14,244 KB
testcase_27 AC 7 ms
14,136 KB
testcase_28 AC 8 ms
14,196 KB
testcase_29 AC 9 ms
14,376 KB
testcase_30 AC 9 ms
14,152 KB
testcase_31 AC 7 ms
14,208 KB
testcase_32 AC 8 ms
14,208 KB
testcase_33 AC 16 ms
16,896 KB
testcase_34 AC 50 ms
26,368 KB
testcase_35 AC 25 ms
19,328 KB
testcase_36 AC 10 ms
14,472 KB
testcase_37 AC 30 ms
17,320 KB
testcase_38 AC 28 ms
17,060 KB
testcase_39 AC 7 ms
14,116 KB
testcase_40 AC 7 ms
14,080 KB
testcase_41 AC 7 ms
14,224 KB
testcase_42 AC 8 ms
14,304 KB
testcase_43 AC 7 ms
14,080 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