結果

問題 No.1789 Tree Growing
ユーザー heno239heno239
提出日時 2021-12-14 19:31:55
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 557 ms / 5,000 ms
コード長 7,789 bytes
コンパイル時間 3,148 ms
コンパイル使用メモリ 184,352 KB
実行使用メモリ 12,104 KB
最終ジャッジ日時 2023-10-13 02:50:34
合計ジャッジ時間 13,006 ms
ジャッジサーバーID
(参考情報)
judge12 / judge11
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 8 ms
11,572 KB
testcase_01 AC 8 ms
11,644 KB
testcase_02 AC 8 ms
11,648 KB
testcase_03 AC 8 ms
11,584 KB
testcase_04 AC 8 ms
11,576 KB
testcase_05 AC 8 ms
11,616 KB
testcase_06 AC 8 ms
11,672 KB
testcase_07 AC 8 ms
11,632 KB
testcase_08 AC 8 ms
11,592 KB
testcase_09 AC 8 ms
11,588 KB
testcase_10 AC 8 ms
11,596 KB
testcase_11 AC 8 ms
11,580 KB
testcase_12 AC 8 ms
11,828 KB
testcase_13 AC 9 ms
11,580 KB
testcase_14 AC 8 ms
11,640 KB
testcase_15 AC 10 ms
11,868 KB
testcase_16 AC 8 ms
11,672 KB
testcase_17 AC 12 ms
11,620 KB
testcase_18 AC 11 ms
11,600 KB
testcase_19 AC 10 ms
11,720 KB
testcase_20 AC 13 ms
11,620 KB
testcase_21 AC 35 ms
11,716 KB
testcase_22 AC 23 ms
11,616 KB
testcase_23 AC 26 ms
11,620 KB
testcase_24 AC 20 ms
11,644 KB
testcase_25 AC 57 ms
11,692 KB
testcase_26 AC 49 ms
11,652 KB
testcase_27 AC 47 ms
11,756 KB
testcase_28 AC 55 ms
11,848 KB
testcase_29 AC 40 ms
11,632 KB
testcase_30 AC 73 ms
11,652 KB
testcase_31 AC 77 ms
11,700 KB
testcase_32 AC 60 ms
11,640 KB
testcase_33 AC 59 ms
11,648 KB
testcase_34 AC 83 ms
11,656 KB
testcase_35 AC 61 ms
11,892 KB
testcase_36 AC 66 ms
11,648 KB
testcase_37 AC 95 ms
11,696 KB
testcase_38 AC 55 ms
11,632 KB
testcase_39 AC 60 ms
11,644 KB
testcase_40 AC 67 ms
11,640 KB
testcase_41 AC 66 ms
11,752 KB
testcase_42 AC 66 ms
11,712 KB
testcase_43 AC 91 ms
11,628 KB
testcase_44 AC 76 ms
11,636 KB
testcase_45 AC 77 ms
11,704 KB
testcase_46 AC 81 ms
11,684 KB
testcase_47 AC 94 ms
11,648 KB
testcase_48 AC 85 ms
11,828 KB
testcase_49 AC 94 ms
11,656 KB
testcase_50 AC 93 ms
11,664 KB
testcase_51 AC 93 ms
11,712 KB
testcase_52 AC 71 ms
11,676 KB
testcase_53 AC 85 ms
11,644 KB
testcase_54 AC 161 ms
11,848 KB
testcase_55 AC 138 ms
11,636 KB
testcase_56 AC 167 ms
11,792 KB
testcase_57 AC 111 ms
11,872 KB
testcase_58 AC 164 ms
11,708 KB
testcase_59 AC 98 ms
11,708 KB
testcase_60 AC 251 ms
11,912 KB
testcase_61 AC 181 ms
11,880 KB
testcase_62 AC 319 ms
11,928 KB
testcase_63 AC 355 ms
12,080 KB
testcase_64 AC 117 ms
11,936 KB
testcase_65 AC 193 ms
12,104 KB
testcase_66 AC 95 ms
11,964 KB
testcase_67 AC 128 ms
11,740 KB
testcase_68 AC 164 ms
11,796 KB
testcase_69 AC 119 ms
11,692 KB
testcase_70 AC 126 ms
11,780 KB
testcase_71 AC 113 ms
11,728 KB
testcase_72 AC 557 ms
12,008 KB
testcase_73 AC 366 ms
12,048 KB
testcase_74 AC 91 ms
11,908 KB
testcase_75 AC 8 ms
11,572 KB
testcase_76 AC 8 ms
11,840 KB
testcase_77 AC 9 ms
11,896 KB
testcase_78 AC 8 ms
11,764 KB
testcase_79 AC 10 ms
11,720 KB
testcase_80 AC 101 ms
11,712 KB
testcase_81 AC 100 ms
11,684 KB
testcase_82 AC 101 ms
11,700 KB
testcase_83 AC 70 ms
11,636 KB
testcase_84 AC 71 ms
11,660 KB
testcase_85 AC 70 ms
11,652 KB
testcase_86 AC 74 ms
11,716 KB
testcase_87 AC 73 ms
11,744 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#pragma GCC optimize("O3")
#pragma GCC optimize("unroll-loops")
#include<iostream>
#include<string>
#include<cstdio>
#include<vector>
#include<cmath>
#include<algorithm>
#include<functional>
#include<iomanip>
#include<queue>
#include<ciso646>
#include<random>
#include<map>
#include<set>
#include<bitset>
#include<stack>
#include<unordered_map>
#include<unordered_set>
#include<utility>
#include<cassert>
#include<complex>
#include<numeric>
#include<array>
#include<chrono>
using namespace std;

//#define int long long
typedef long long ll;

typedef unsigned long long ul;
typedef unsigned int ui;
constexpr ll mod = 1000000007;
const ll INF = mod * mod;
typedef pair<int, int>P;

#define rep(i,n) for(int i=0;i<n;i++)
#define per(i,n) for(int i=n-1;i>=0;i--)
#define Rep(i,sta,n) for(int i=sta;i<n;i++)
#define rep1(i,n) for(int i=1;i<=n;i++)
#define per1(i,n) for(int i=n;i>=1;i--)
#define Rep1(i,sta,n) for(int i=sta;i<=n;i++)
#define all(v) (v).begin(),(v).end()
typedef pair<ll, ll> LP;
typedef double ld;
typedef pair<ld, ld> LDP;
const ld eps = 1e-4;
const ld pi = acosl(-1.0);

template<typename T>
void chmin(T& a, T b) {
	a = min(a, b);
}
template<typename T>
void chmax(T& a, T b) {
	a = max(a, b);
}
template<typename T>
void cinarray(vector<T>& v) {
	rep(i, v.size())cin >> v[i];
}
template<typename T>
void coutarray(vector<T>& v) {
	rep(i, v.size()) {
		if (i > 0)cout << " "; cout << v[i];
	}
	cout << "\n";
}
ll mod_pow(ll x, ll n, ll m = mod) {
	if (n < 0) {
		ll res = mod_pow(x, -n, m);
		return mod_pow(res, m - 2, m);
	}
	if (abs(x) >= m)x %= m;
	if (x < 0)x += m;
	if (x == 0)return 0;
	ll res = 1;
	while (n) {
		if (n & 1)res = res * x % m;
		x = x * x % m; n >>= 1;
	}
	return res;
}
struct modint {
	int n;
	modint() :n(0) { ; }
	modint(ll m) {
		if (m < 0 || mod <= m) {
			m %= mod; if (m < 0)m += mod;
		}
		n = m;
	}
	operator int() { return n; }
};
bool operator==(modint a, modint b) { return a.n == b.n; }
modint operator+=(modint& a, modint b) { a.n += b.n; if (a.n >= mod)a.n -= mod; return a; }
modint operator-=(modint& a, modint b) { a.n -= b.n; if (a.n < 0)a.n += mod; return a; }
modint operator*=(modint& a, modint b) { a.n = ((ll)a.n * b.n) % mod; return a; }
modint operator+(modint a, modint b) { return a += b; }
modint operator-(modint a, modint b) { return a -= b; }
modint operator*(modint a, modint b) { return a *= b; }
modint operator^(modint a, ll n) {
	if (n == 0)return modint(1);
	modint res = (a * a) ^ (n / 2);
	if (n % 2)res = res * a;
	return res;
}

ll inv(ll a, ll p) {
	return (a == 1 ? 1 : (1 - p * inv(p % a, a)) / a + p);
}
modint operator/(modint a, modint b) { return a * modint(inv(b, mod)); }
modint operator/=(modint& a, modint b) { a = a / b; return a; }
const int max_n = 1 << 20;
modint fact[max_n], factinv[max_n];
void init_f() {
	fact[0] = modint(1);
	for (int i = 0; i < max_n - 1; i++) {
		fact[i + 1] = fact[i] * modint(i + 1);
	}
	factinv[max_n - 1] = modint(1) / fact[max_n - 1];
	for (int i = max_n - 2; i >= 0; i--) {
		factinv[i] = factinv[i + 1] * modint(i + 1);
	}
}
modint comb(int a, int b) {
	if (a < 0 || b < 0 || a < b)return 0;
	return fact[a] * factinv[b] * factinv[a - b];
}
modint combP(int a, int b) {
	if (a < 0 || b < 0 || a < b)return 0;
	return fact[a] * factinv[a - b];
}

ll gcd(ll a, ll b) {
	a = abs(a); b = abs(b);
	if (a < b)swap(a, b);
	while (b) {
		ll r = a % b; a = b; b = r;
	}
	return a;
}

template<typename T>
struct mcf {
private:
	struct edge {
		int to, cap; T cost; int rev;
	};
	vector<vector<edge>> G;
	vector<P> par;
	vector<T> dist;
	T inf = mod;
public:
	mcf(int n) {
		G.resize(n);
		par.resize(n);
		dist.resize(n);
	}
	void add_edge(int from, int to, int cap, T cost) {
		G[from].push_back({ to,cap,cost,(int)G[to].size() });
		G[to].push_back({ from,0,-cost,(int)G[from].size() - 1 });
	}
	pair<T, int> minimum_road(int s, int t) {
		fill(all(par), P{ -1,-1 });
		fill(all(dist), inf);
		dist[s] = 0;
		priority_queue<pair<T, int>, vector<pair<T, int>>, greater<pair<T, int>>> q;
		q.push({ 0,s });
		while (!q.empty()) {
			pair<T, int> p = q.top(); q.pop();
			int id = p.second;
			if (id == t)continue;
			if (p.first > dist[id])continue;
			rep(j, G[id].size()) {
				if (G[id][j].cap > 0) {
					int to = G[id][j].to;
					T nd = p.first + G[id][j].cost;
					if (nd < dist[to]) {
						dist[to] = nd;
						par[to] = { id,j };
						q.push({ dist[to],to });
					}
				}
			}
		}
		int cur = t;
		int f = mod;
		while (cur != s) {
			int p = par[cur].first, j = par[cur].second;
			if (p < 0)return { -1,-1 };
			f = min(f, G[p][j].cap);
			cur = p;
		}
		cur = t;
		while (cur != s) {
			int p = par[cur].first, j = par[cur].second;
			if (p < 0)return { -1,-1 };
			G[p][j].cap -= f;
			if (G[p][j].rev >= 0) {
				G[cur][G[p][j].rev].cap += f;
			}
			cur = p;
		}
		return { dist[t],f };
	}
	T minimum_cost_flow(int s, int t, int k) {
		T ret = 0;
		rep(i, k) {
			pair<T, int> z = minimum_road(s, t);
			if (z.first < 0)return -1;
			if (k - i <= z.second) {
				ret += z.first * (k - i); break;
			}
			i += z.second - 1;
			ret += z.first * z.second;
		}
		return ret;
	}
};
int dx[4] = { 1,0,-1,0 };
int dy[4] = { 0,1,0,-1 };

int dp[105][105];

void solve() {
	int k; cin >> k;
	vector<vector<int>> g(k);
	rep(i, k - 1) {
		int a, b; cin >> a >> b; a--; b--;
		g[a].push_back(b);
		g[b].push_back(a);
	}
	vector<string> memstr(k);
	vector<int> park(k);
	function<string(int, int)> dfsstr = [&](int id, int fr) {
		vector<string> tos;
		for (int to : g[id])if (to != fr) {
			string nex = dfsstr(to, id);
			tos.push_back(nex);
		}
		sort(all(tos));
		string ans = "(";
		for (auto s : tos)ans += s;
		ans.push_back(')');
		memstr[id] = ans;
		park[id] = fr;
		return ans;
	};
	dfsstr(0, -1);
	vector<string> trees = memstr;
	sort(all(trees));
	trees.erase(unique(all(trees)), trees.end());
	vector<vector<int>> nex(trees.size());
	rep(i, trees.size()) {
		int chk = -1;
		rep(j, memstr.size())if (memstr[j] == trees[i]) {
			chk = j;
		}
		assert(chk >= 0);
		for (int to : g[chk]) {
			if (to == park[chk])continue;
			int loc = lower_bound(all(trees), memstr[to]) - trees.begin();
			nex[i].push_back(loc);
		}
	}
	int xroot = lower_bound(all(trees), memstr[0]) - trees.begin();
	int n; cin >> n;
	vector<vector<int>> G(n);
	rep(i, n-1) {
		int a, b; cin >> a >> b; a--; b--;
		G[a].push_back(b);
		G[b].push_back(a);
	}
	int ans = -mod;
	rep(root, n) {
		function<void(int, int)> dfs = [&](int id, int fr) {
			vector<int> ids;
			for (int to : G[id])if (to != fr) {
				dfs(to, id);
				ids.push_back(to);
			}
			rep(j, trees.size())dp[id][j] = -mod;
			rep(j, trees.size()) {
				if (id != root && j == xroot)continue;
				for (int to : ids) {
					chmax(dp[id][j], dp[to][j]+1);
				}
				if (nex[j].empty()) {
					chmax(dp[id][j], 0);
					continue;
				}
				if (nex[j].size() > ids.size())continue;
				int s = nex[j].size() + ids.size();
				int t = s + 1;
				mcf<int> mc(t + 1);
				rep(a, ids.size()) {
					mc.add_edge(s, a, 1, 0);
				}
				rep(b, nex[j].size()) {
					mc.add_edge(b + ids.size(), t, 1, 0);
				}
				rep(a, ids.size()) {
					rep(b, nex[j].size()) {
						if (dp[ids[a]][nex[j][b]] >= 0) {
							mc.add_edge(a, b + ids.size(), 1, n - (dp[ids[a]][nex[j][b]]+1));
						}
					}
				}
				int val = mc.minimum_cost_flow(s, t, nex[j].size());
				if (val >= 0) {
					val = -(val - n * (int)nex[j].size());
					chmax(dp[id][j], val);
				}
			}
		};
		dfs(root, -1);
		chmax(ans, dp[root][xroot]);
		//cout << root << " " << dp[root][xroot] << "\n";
	}
	if (ans < 0)ans = -1;
	cout << ans << "\n";
}

signed main() {
	ios::sync_with_stdio(false);
	cin.tie(0);
	//cout << fixed << setprecision(8);
	//init_f();
	//init();
	//while(true)
	//expr();
	//init();
	//int t; cin >> t; rep(i, t)
	solve();
	return 0;
}
0