BZOJ1131: [POI2008]Sta

题意:给出一个N个点的树,找出一个点来,以这个点为根的树时,所有点的深度之和最大。

题解:记录每个点的深度,再根据根节点的深度和逐层推导出其他点的深度和。

我用的是BFS

#include <stdio.h>
#include <string.h>
#include <iostream>
#include <queue>
using namespace std;
typedef long long ll;
int n,cnt,ans;
int head[],next[],to[],fa[],s[];
ll f[],g[],siz[];
queue<int> q;
void add(int a,int b)
{
to[cnt]=b;
next[cnt]=head[a];
head[a]=cnt++;
}
int main()
{
scanf("%d",&n);
memset(head,-,sizeof(head));
int i,a,b,u;
for(i=;i<n;i++)
{
scanf("%d%d",&a,&b);
add(a,b);
add(b,a);
}
q.push();
while(!q.empty())
{
u=q.front();
q.pop();
s[++s[]]=u;
siz[u]++;
for(i=head[u];i!=-;i=next[i])
{
if(to[i]!=fa[u])
{
fa[to[i]]=u;
q.push(to[i]);
}
}
}
for(i=n;i>=;i--)
{
siz[fa[s[i]]]+=siz[s[i]];
f[fa[s[i]]]+=siz[s[i]]+f[s[i]]; //f[i]表示i的所有儿子到i的深度之和
}
g[]=f[ans=];
for(i=;i<=n;i++)
{
g[s[i]]=g[fa[s[i]]]+n-(siz[s[i]]<<); //g[i]表示所有点到i的距离之和,可由g[fa[i]]推出
if(g[ans]<g[s[i]]||(g[ans]==g[s[i]]&&ans>s[i]))
ans=s[i];
}
printf("%d",ans);
return ;
}

POJ3107:Godfather

题意:在树中找一个点,使去掉这个点后,剩余的所有子树节点个数的最大值最小,求满足要求的所有节点。

题解:求出每个子树的节点个数size[x],则答案为min(size[y],n-size[x]),y是x的儿子。

#include <stdio.h>
#include <string.h>
#include <iostream>
using namespace std;
const int maxn=;
int n,cnt,minn;
int head[maxn],to[maxn<<],next[maxn<<],s[maxn],f[maxn],sta[maxn];
int readin()
{
int ret=; char gc;
while(gc<''||gc>'') gc=getchar();
while(gc>=''&&gc<='') ret=ret*+gc-'',gc=getchar();
return ret;
}
void add(int a,int b)
{
to[cnt]=b;
next[cnt]=head[a];
head[a]=cnt++;
}
void dfs(int x,int fa)
{
s[x]=;
for(int i=head[x];i!=-;i=next[i])
{
if(to[i]!=fa)
{
dfs(to[i],x);
s[x]+=s[to[i]];
f[x]=max(f[x],s[to[i]]);
}
}
f[x]=max(f[x],n-s[x]);
minn=min(minn,f[x]);
}
int main()
{
n=readin();
memset(head,-,sizeof(head));
int i,a,b;
for(i=;i<n;i++)
{
a=readin(),b=readin();
add(a,b),add(b,a);
}
minn=<<;
dfs(,);
for(i=;i<=n;i++) if(f[i]==minn) sta[++sta[]]=i;
for(i=;i<sta[];i++) printf("%d ",sta[i]);
printf("%d",sta[sta[]]);
return ;
}

POJ1655:Balancing Act

题意:同POJ3107

#include <stdio.h>
#include <iostream>
#include <string.h>
using namespace std;
const int maxn=;
int n,minn,ans,cnt;
int s[maxn],to[maxn<<],next[maxn<<],head[maxn];
int readin()
{
int ret=; char gc;
while(gc<''||gc>'') gc=getchar();
while(gc>=''&&gc<='') ret=ret*+gc-'',gc=getchar();
return ret;
}
void add(int a,int b)
{
to[cnt]=b;
next[cnt]=head[a];
head[a]=cnt++;
}
void dfs(int x,int fa)
{
int t=;
s[x]=;
for(int i=head[x];i!=-;i=next[i])
{
if(to[i]!=fa)
{
dfs(to[i],x);
s[x]+=s[to[i]];
t=max(t,s[to[i]]);
}
}
t=max(t,n-s[x]);
if(t<minn||(t==minn&&x<ans)) ans=x,minn=t;
}
void work()
{
n=readin();
memset(head,-,sizeof(head));
ans=cnt=,minn=<<;
int i,a,b;
for(i=;i<n;i++)
{
a=readin(),b=readin();
add(a,b),add(b,a);
}
dfs(,);
printf("%d %d\n",ans,minn);
}
int main()
{
int t=readin();
while(t--) work();
return ;
}

BZOJ1827:[Usaco2010 Mar]gather 奶牛大集会

题意:与上一题差不多,只不过不同的点有不同的牛居住,求的是所有牛到核心的最小总路程

题解:见http://www.cnblogs.com/CQzhangyu/p/6178852.html

树形DP水题杂记的更多相关文章

  1. POJ 2342 &&HDU 1520 Anniversary party 树形DP 水题

    一个公司的职员是分级制度的,所有员工刚好是一个树形结构,现在公司要举办一个聚会,邀请部分职员来参加. 要求: 1.为了聚会有趣,若邀请了一个职员,则该职员的直接上级(即父节点)和直接下级(即儿子节点) ...

  2. 树形DP水题系列(1):FAR-FarmCraft [POI2014][luogu P3574]

    题目 大意: 边权为1 使遍历树时到每个节点的时间加上点权的最大值最小 求这个最小的最大值 思路: 最优化问题 一眼树形DP 考虑状态设立 先直接以答案为状态 dp[u] 为遍历完以u为根的子树的答案 ...

  3. ACM :漫漫上学路 -DP -水题

    CSU 1772 漫漫上学路 Time Limit: 1000MS   Memory Limit: 131072KB   64bit IO Format: %lld & %llu Submit ...

  4. [poj2247] Humble Numbers (DP水题)

    DP 水题 Description A number whose only prime factors are 2,3,5 or 7 is called a humble number. The se ...

  5. POJ 1155 TELE 背包型树形DP 经典题

    由电视台,中转站,和用户的电视组成的体系刚好是一棵树 n个节点,编号分别为1~n,1是电视台中心,2~n-m是中转站,n-m+1~n是用户,1为root 现在节点1准备转播一场比赛,已知从一个节点传送 ...

  6. POJ 2342 树形DP入门题

    有一个大学的庆典晚会,想邀请一些在大学任职的人来參加,每一个人有自己的搞笑值,可是如今遇到一个问题就是假设两个人之间有直接的上下级关系,那么他们中仅仅能有一个来參加,求请来一部分人之后,搞笑值的最大是 ...

  7. Codeforces 148D 一袋老鼠 Bag of mice | 概率DP 水题

    除非特别忙,我接下来会尽可能翻译我做的每道CF题的题面! Codeforces 148D 一袋老鼠 Bag of mice | 概率DP 水题 题面 胡小兔和司公子都认为对方是垃圾. 为了决出谁才是垃 ...

  8. 51nod 1353 树 | 树形DP经典题!

    51nod 1353 树 | 树形DP好题! 题面 切断一棵树的任意条边,这棵树会变成一棵森林. 现要求森林中每棵树的节点个数不小于k,求有多少种切法. 数据范围:\(n \le 2000\). 题解 ...

  9. P2016 战略游戏——树形DP大水题

    P2016 战略游戏 树形DP 入门题吧(现在怎么是蓝色标签搞不懂): 注意是看见每一条边而不是每一个点(因为这里错了好几次): #include<cstdio> #include< ...

随机推荐

  1. Android 在 manifest 文件里增加 versionCode,运行后版本并没有随之增加

    现象:从 git 上拉下来的代码中 versionCode 是8,versionName 是1.0.7但运行后的版本仍然是1.0.6 原因:全文搜索1.0.6之后发现在 bin 目录下也有一个 man ...

  2. Swift - UIViewController

    UIViewController类详解: 通过Nib文件初始化 init(nibName nibName: String?, bundle nibBundle: NSBundle?) println( ...

  3. linux 下查mac

    sh-4.1# cat /sys/class/net/eth0/address 4c:cc:6a::9a: sh-4.1# ifconfig -a |grep 'HWaddr'|awk '{print ...

  4. Delphi中线程类TThread实现多线程编程1---构造、析构……

    参考:http://www.cnblogs.com/rogee/archive/2010/09/20/1832053.html Delphi中有一个线程类TThread是用来实现多线程编程的,这个绝大 ...

  5. Solr入门之(1)前言与概述

    一.前言:为何选择Solr 由于搜索引擎功能在门户社区中对提高用户体验有着重在门户社区中涉及大量需要搜索引擎的功能需求,目前在实现搜索引擎的方案上有几种方案可供选择: 1. 基于Lucene自己进行封 ...

  6. Golang gopath

    golang 的gopath 至关重要,会影响到我们import package. golang 支持以相对路径的方式import,但是这种方式是不推荐的. 推荐的做法是在gopath中添加我们的项目 ...

  7. [译] EXTENDING JQUERY – 2.2 A simple plugin

    2.2 一个简单的插件示例 jQuery 插件能做任何事情,这个已经由浩如烟海的各类第三方插件如证明.小到只影响一个元素,大到改变多个元素的外观和行为,jQuery 的各种功能等你来扩展. 2.2.1 ...

  8. 在Activity和Application中使用SharedPreferences存储数据

    1.在Activity中创建SharedPreferences对象及操作方法 SharedPreferences pre=getSharedPreferences("User", ...

  9. PL/SQL Developer 9.x 注册码

    记下来,以备以后使用,好笔头,哈哈哈 Product Code:46jw8l8ymfmp2twwbuur8j9gv978m2q2du serial Number:307254 password:xs3 ...

  10. ASP.NET 5探险(2):上传文件

    (此文章同时发表在本人微信公众号"dotNET每日精华文章",欢迎右边二维码来关注.) 题记:在ASP.NET 5(MVC 6)中处理上传文件的方式和之前有所不同. 在MVC 5之 ...