大意: 给定树, 求删除一些边, 使得连通块大小的乘积最大

设$dp_{i,j}$表示只考虑点$i$的子树, $i$所在连通块大小为$j$的最大值.

转移的时候不计算$i$所在连通块的贡献, 留到最后再算.

这题答案很大, 还要套个高精, 这是没套高精的代码

#include <iostream>
#include <sstream>
#include <algorithm>
#include <cstdio>
#include <cmath>
#include <set>
#include <map>
#include <queue>
#include <string>
#include <cstring>
#include <bitset>
#include <functional>
#include <random>
#define REP(i,a,n) for(int i=a;i<=n;++i)
#define PER(i,a,n) for(int i=n;i>=a;--i)
#define hr putchar(10)
#define pb push_back
#define lc (o<<1)
#define rc (lc|1)
#define mid ((l+r)>>1)
#define ls lc,l,mid
#define rs rc,mid+1,r
#define x first
#define y second
#define io std::ios::sync_with_stdio(false)
#define endl '\n'
#define DB(a) ({REP(__i,1,n) cout<<a[__i]<<',';hr;})
using namespace std;
typedef long long ll;
typedef pair<int,int> pii;
const int P = 1e9+7, INF = 0x3f3f3f3f;
ll gcd(ll a,ll b) {return b?gcd(b,a%b):a;}
ll qpow(ll a,ll n) {ll r=1%P;for (a%=P;n;a=a*a%P,n>>=1)if(n&1)r=r*a%P;return r;}
ll inv(ll x){return x<=1?1:inv(P%x)*(P-P/x)%P;}
inline int rd() {int x=0;char p=getchar();while(p<'0'||p>'9')p=getchar();while(p>='0'&&p<='9')x=x*10+p-'0',p=getchar();return x;}
//head const int N = 710;
int n, sz[N];
vector<int> g[N];
int dp[N][N],tmp[N]; void chkmax(int &a, int b) {a<b?a=b:0;} void dfs(int x, int f) {
sz[x] = dp[x][1] = 1;
for (int y:g[x]) if (y!=f) {
dfs(y,x);
REP(i,1,sz[x]+sz[y]) tmp[i]=0;
REP(i,1,sz[x]) REP(j,1,sz[y]) {
int t = dp[x][i]*dp[y][j];
chkmax(tmp[i],t*j);
chkmax(tmp[i+j],t);
}
REP(i,1,sz[x]+sz[y]) dp[x][i]=tmp[i];
sz[x] += sz[y];
}
} int main() {
scanf("%d",&n);
REP(i,2,n) {
int u, v;
scanf("%d%d",&u,&v);
g[u].pb(v),g[v].pb(u);
}
dfs(1,0);
int ans = 0;
REP(i,1,n) ans = max(ans, dp[1][i]*i);
printf("%d\n", ans);
}

最新文章

  1. 谈一谈前端多容器(多webview平台)处理方案
  2. 网页Loading效果
  3. 使用Xmanager远程访问Redhat Enterprise Linux 6.1
  4. CSS过滤器
  5. SPOJ bsubstr
  6. WebView一般用法总结
  7. Cocos2d-android (02) 添加一个精灵对象
  8. js模版引擎Mustache介绍
  9. 提高你的Java代码质量吧:如果有必要,使用变长数组吧
  10. 【转】Android 快捷方式的创建
  11. SQL语句中的乘号
  12. C++ STL源代码学习(map,set内部heap篇)
  13. 用C语言写一个“事件”的模拟程序
  14. Windows下pycharm远程连接服务器调试-tensorflow无法加载问题
  15. [整]swp文件的处理
  16. JavaScript(第三十天)【XPath】
  17. iOS学习——Quartz2D学习之DrawRect
  18. C++ STL中的map用红黑树实现,搜索效率是O(lgN),为什么不像python一样用散列表从而获得常数级搜索效率呢?
  19. 黑客帝国效果赏析(包含ES6的语法)
  20. windows server 2008 R2 安装

热门文章

  1. LINK : fatal error LNK1181: cannot open input file &#39;glew32.lib&#39; error: command &#39;C:\\Program Files (
  2. tomcat做成Windows自启动服务
  3. ios手机竖屏拍照图片旋转90&#176;问题解决方法
  4. Mercurial 安装及使用
  5. js - try..catch详解
  6. uniapp - 点赞动画插件
  7. Vue使用NProgress
  8. pandas.merge数据连接合并
  9. pip安装daemon模块
  10. ES6 - 字符串的扩展(模版字符串)