码迷,mamicode.com
首页 > 其他好文 > 详细

luogu P2016 战略游戏 树形dp

时间:2020-03-25 19:08:37      阅读:74      评论:0      收藏:0      [点我收藏+]

标签:i++   ems   战略   ons   cin   游戏   ios   using   ace   

#include<cstdio>
#include<cstring> 
#include<iostream>
#include<algorithm>
using namespace std;
const int N=3010;
int e[N],h[N],ne[N],idx;
int f[N][2];
bool st[N];
void add(int a,int b)
{
	e[idx]=b;
	ne[idx]=h[a];
	h[a]=idx++;
}
int n,m;
int a,b;
void dfs(int u)
{
	f[u][1]=1;
	f[u][0]=0;
	for(int i=h[u];~i;i=ne[i])
	{
		int j=e[i];
		dfs(j);
		f[u][0]+=f[j][1];
		f[u][1]+=min(f[j][0],f[j][1]);
	}
}
int main()
{
	idx=0;
	memset(h,-1,sizeof h);
	memset(st,0,sizeof st);
	cin>>n;
	for(int i=1;i<=n;i++)
	{
		int id,cnt;
		cin>>id>>cnt;
		while(cnt--)
		{
			int ver;
			cin>>ver;
			add(id,ver);
			st[ver]=1;
		}
	}
	int root=0;
	while(st[root])
		root++;
	dfs(root);
	cout<<min(f[root][1],f[root][0])<<endl;
	return 0;
}

luogu P2016 战略游戏 树形dp

标签:i++   ems   战略   ons   cin   游戏   ios   using   ace   

原文地址:https://www.cnblogs.com/QingyuYYYYY/p/12568454.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!