結果
| 問題 | No.1418 Sum of Sum of Subtree Size |
| コンテスト | |
| ユーザー |
kwm_t
|
| 提出日時 | 2021-09-23 14:54:27 |
| 言語 | C++14 (gcc 13.3.0 + boost 1.89.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 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 3 |
| other | AC * 41 |
ソースコード
#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;
}
kwm_t