HDU 2412 Party at Hali-Bula(树状DP)

如何得到最大人数还是比较简单的。。。难的是如何判断唯一。。搞不出来


#include<iostream>
#include<cstdio>
#include<algorithm>
#include<cstdlib>
#include<cmath>
#include<string.h>
#include<cstring>
#include<string>
#include<map>
#include<set>
#include<vector>
#include<ctime>
#define hash hashh
using namespace std;
typedef long long ll;

#define sp  system("pause");

int dp[450][2];
int dup[450][2];
int isvis[220];
vector<int>G[400];
int maxx = 0, ok = 0;

void dfs(int root)
{
	int j, u;
	dp[root][0] = 0;
	dp[root][1] = 1;
	dup[root][0] = 1;
	dup[root][1] = 1;
	for (j = 0; j<G[root].size(); j++)
	{
		u = G[root][j];
		dfs(u);
		dp[root][0] += max(dp[u][0], dp[u][1]);
		dp[root][1] += dp[u][0];
		if (dp[u][0]>dp[u][1] && dp[u][0] == 0) dup[root][0] = 0;
		else if (dp[u][1]>dp[u][0] && dp[u][1] == 0) dup[root][0] = 0;
		else if (dp[u][0] == dp[u][1]) dup[root][0] = 0;
		if (dup[u][0] == 0) dup[root][1] = 0;
	}
}
int main()
{
	int n;
	while (cin >> n, n)
	{
		memset(dup, 0, sizeof dup);
		memset(isvis, 0, sizeof isvis);
		maxx = 0; ok = 0;
		for (int i = 0; i<400; i++)
			G[i].clear();
		memset(dp, 0, sizeof dp);
		string name;
		cin >> name;
		int cot = 1;
		map<string, int>ma;
		ma[name] = cot++;
		for (int i = 0; i<n - 1; i++)
		{
			cin >> name;
			if (!ma[name])
				ma[name] = cot++;
			int x = ma[name];
			cin >> name;
			if (!ma[name])
				ma[name] = cot++;
			int y = ma[name];
			G[y].push_back(x);
		}
		dfs(1);
		if (dp[1][0]>dp[1][1] && dup[1][0] == 1) printf("%d Yes\n", dp[1][0]);
		else if (dp[1][1]>dp[1][0] && dup[1][1] == 1) printf("%d Yes\n", dp[1][1]);
		else printf("%d No\n", max(dp[1][0], dp[1][1]));
	}
	return 0;
}


评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值