Uva 10118 免费糖果

时间:2022-05-21 22:08:29

题目链接:https://uva.onlinejudge.org/external/101/10118.pdf

参考:http://www.cnblogs.com/kedebug/archive/2013/04/07/3006493.html

刚开始,我想到了dp状态的描叙,d(a,b,c,d) 从 4堆里面拿走 a,b,c,d 的最优值,但是好难实现啊,dp顺序感觉是可以用LCS的方案,但是,怎么保存自己口袋里面有哪些呢? ——hash.

最后参考了一下大神的方案,记忆化写的,Orz.

嗯,像这种状态转移比较难写的,还是用搜索的思想好一点。

#include <bits/stdc++.h>
using namespace std; const int Maxn = ;
int pile[][Maxn];
int dp[Maxn][Maxn][Maxn][Maxn];
int n,top[]; int dfs(int count,bool hash[]) {
if(dp[top[]][top[]][top[]][top[]]!=-)
return dp[top[]][top[]][top[]][top[]];
if(count==)
return dp[top[]][top[]][top[]][top[]] = ; int ans = ;
for(int i=;i<;i++) {
if(top[i]==n) continue;
int color = pile[i][top[i]];
top[i]+=;
if(hash[color]) {
hash[color] = false;
ans = max(ans,dfs(count-,hash)+);
hash[color] = true;
}
else {
hash[color] = true;
ans = max(ans,dfs(count+,hash));
hash[color] = false;
}
top[i]-=;
}
return dp[top[]][top[]][top[]][top[]] = ans; } int main()
{ while(scanf("%d",&n),n)
{
for(int i=; i<n; i++)
for(int j=; j<; j++)
scanf("%d",&pile[j][i]); bool hash[];
memset(dp,-,sizeof(dp));
memset(hash,false,sizeof(hash)); top[] = top[] = top[] = top[] = ;
printf("%d\n",dfs(,hash)); }
return ;
}