結果

問題 No.1418 Sum of Sum of Subtree Size
ユーザー kwm_tkwm_t
提出日時 2021-09-24 06:04:48
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 96 ms / 2,000 ms
コード長 2,662 bytes
コンパイル時間 1,802 ms
コンパイル使用メモリ 178,276 KB
実行使用メモリ 48,880 KB
最終ジャッジ日時 2024-07-05 09:38:50
合計ジャッジ時間 4,187 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,816 KB
testcase_01 AC 1 ms
6,940 KB
testcase_02 AC 1 ms
6,944 KB
testcase_03 AC 61 ms
11,968 KB
testcase_04 AC 65 ms
12,032 KB
testcase_05 AC 63 ms
12,032 KB
testcase_06 AC 67 ms
12,032 KB
testcase_07 AC 64 ms
12,032 KB
testcase_08 AC 42 ms
8,960 KB
testcase_09 AC 21 ms
6,944 KB
testcase_10 AC 22 ms
6,944 KB
testcase_11 AC 13 ms
6,940 KB
testcase_12 AC 33 ms
7,936 KB
testcase_13 AC 39 ms
8,832 KB
testcase_14 AC 41 ms
9,088 KB
testcase_15 AC 29 ms
7,552 KB
testcase_16 AC 5 ms
6,940 KB
testcase_17 AC 6 ms
6,944 KB
testcase_18 AC 55 ms
11,264 KB
testcase_19 AC 11 ms
6,940 KB
testcase_20 AC 3 ms
6,944 KB
testcase_21 AC 31 ms
7,552 KB
testcase_22 AC 26 ms
6,940 KB
testcase_23 AC 4 ms
6,940 KB
testcase_24 AC 4 ms
6,944 KB
testcase_25 AC 3 ms
6,940 KB
testcase_26 AC 3 ms
6,940 KB
testcase_27 AC 2 ms
6,944 KB
testcase_28 AC 3 ms
6,940 KB
testcase_29 AC 4 ms
6,940 KB
testcase_30 AC 4 ms
6,940 KB
testcase_31 AC 3 ms
6,940 KB
testcase_32 AC 3 ms
6,940 KB
testcase_33 AC 21 ms
13,440 KB
testcase_34 AC 96 ms
48,880 KB
testcase_35 AC 39 ms
22,400 KB
testcase_36 AC 7 ms
6,940 KB
testcase_37 AC 47 ms
16,220 KB
testcase_38 AC 43 ms
15,044 KB
testcase_39 AC 2 ms
6,940 KB
testcase_40 AC 2 ms
6,940 KB
testcase_41 AC 2 ms
6,940 KB
testcase_42 AC 1 ms
6,944 KB
testcase_43 AC 1 ms
6,944 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
//#include <atcoder/all>
using namespace std;
//using namespace atcoder;
//using mint = atcoder::modint;
//int mod;
//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; }
struct ReRooting {
	struct Edge {
		int to;
		Edge(int _to) :to(_to) {}
	};
	struct Data {
		long long main;
		long long sub;
		Data() :main(1), sub(0) {}
		Data(long long _main, long long _sub) : main(_main), sub(_sub) {}
	};
	vector<vector<Edge>>g;
	vector<Data>dp;
	vector<Data>ans;
	int sz;
	ReRooting(int _sz) :sz(_sz) {
		g.resize(sz);
		dp.reserve(sz);
		ans.resize(sz);
	}
	void ReadGraph() {
		rep(i, sz - 1) {
			int a, b; cin >> a >> b; a--; b--;
			g[a].push_back({ b });
			g[b].push_back({ a });
		}
	}
	Data  merge(const Data &lh, const Data &rh) {
		Data ret = lh;
		ret.main += rh.main;
		ret.sub += rh.main + rh.sub;
		return ret;
	}
	Data  mergeSub(const Data &lh, const Data &rh) {
		Data ret = lh;
		ret.main += rh.main + 1;
		ret.sub += rh.sub;
		return ret;
	}
	void dfs(int v, int p = -1) {
		Data val(1, 0);
		for (auto e : g[v]) {
			if (p == e.to)continue;
			dfs(e.to, v);
			val = merge(val, dp[e.to]);
		}
		dp[v] = val;
	}
	void dfsR(int v, int p) {
		for (auto e : g[v]) ans[v] = merge(ans[v], dp[e.to]);
		vector<Data>vdata;
		for (auto e : g[v]) vdata.push_back(dp[e.to]);
		int sz = vdata.size();
		vector<Data>sumL(sz + 1), sumR(sz + 1);
		sumL[0] = { 0,0 }; sumR[0] = { 0,0 };
		rep(i, sz)sumL[i + 1] = merge(sumL[i], vdata[i]);
		rep(i, sz)sumR[i + 1] = merge(sumR[i], vdata[sz - i - 1]);
		for (int i = 0; i < g[v].size(); ++i) {
			auto e = g[v][i];
			if (p == e.to)continue;
			dp[v] = mergeSub(sumL[i], sumR[sz - (i + 1)]);
			dfsR(e.to, v);
		}
	}
	void output() {
		long long out = 0;
		rep(i, sz) out += ans[i].main + ans[i].sub;
		cout << out << endl;
	}
	void solve() {
		ReadGraph();
		dfs(0);
		dfsR(0, -1);
		output();
	}
};
int main() {
	ios::sync_with_stdio(false);
	cin.tie(nullptr);
	int n; cin >> n;
	ReRooting reroot(n);
	reroot.solve();
	return 0;
}
0