Topcoder SRM 544 1000pt

记忆化搜索

#include<iostream>
#include<vector>
#include<algorithm>
#include<cstdio>
#include<queue>
#include<stack>
#include<string>
#include<map>
#include<set>
#include<cmath>
#include<cassert>
#include<cstring>
#include<iomanip>
using namespace std;

#ifdef _WIN32
#define i64 __int64
#define out64 "%I64d\n"
#define in64 "%I64d"
#else
#define i64 long long
#define out64 "%lld\n"
#define in64 "%lld"
#endif

#define FOR(i,a,b)      for( int i = (a) ; i <= (b) ; i ++)
#define FFF(i,a)        for( int i = 0 ; i < (a) ; i ++)
#define FFD(i,a,b)      for( int i = (a) ; i >= (b) ; i --)
#define S64(a)          scanf(in64,&a)
#define SS(a)           scanf("%d",&a)
#define LL(a)           ((a)<<1)
#define RR(a)           (((a)<<1)+1)
#define pb              push_back
#define CL(Q)           while(!Q.empty())Q.pop()
#define MM(name,what)   memset(name,what,sizeof(name))
#define read            freopen("in.txt","r",stdin)
#define write           freopen("out.txt","w",stdout)

const int inf = 0x3f3f3f3f;
const i64 inf64 = 0x3f3f3f3f3f3f3f3fLL;
const double oo = 10e9;
const double eps = 10e-9;
const double pi = acos(-1.0);
const int maxn = 55;
const int mod = 1000000007;

// i64 gcd(i64 a,i64 b){return b?gcd(b,a%b):a;}
struct zz
{
	int x;
	int y;
	int z;
}zx;
struct  AliceBobShuffle
{
	int countWays(vector <int> a, vector <int> b, vector <int> c, vector <int> d)
	{
		int sa = a.size();
		int sb = b.size();
		int sc = c.size();
		int sd = d.size();
		if(sa+sb != sc+sd) return 0;
		int dp[maxn][maxn][maxn];
		bool hash[maxn][maxn][maxn];
		MM(dp,0);
		MM(hash,false);
		queue<zz>q;
		CL(q);
		zx.x = 0;
		zx.y = 0;
		zx.z = 0;
		q.push(zx);
		dp[0][0][0]=1;
		hash[0][0][0] = true;
		zz now,to;
		int f;
		while(!q.empty())
		{
			now = q.front();
			q.pop();
			f = now.x + now.y - now.z;
			if(now.x<sa && now.z<sc && a[now.x] == c[now.z])
			{
				to.x=now.x+1;
				to.y=now.y;
				to.z=now.z+1;
				dp[to.x][to.y][to.z] += dp[now.x][now.y][now.z];
				dp[to.x][to.y][to.z] %= mod;
				if(!hash[to.x][to.y][to.z])
				{
					hash[to.x][to.y][to.z] = true;
					q.push(to);
				}
			}
			if( now.x<sa && f<sd  && a[now.x] == d[f])
			{
				to.x=now.x+1;
				to.y=now.y;
				to.z=now.z;
				dp[to.x][to.y][to.z] += dp[now.x][now.y][now.z];
				dp[to.x][to.y][to.z] %= mod;
				if(!hash[to.x][to.y][to.z])
				{
					hash[to.x][to.y][to.z] = true;
					q.push(to);
				}
			}
			if(now.y<sb && now.z<sc && b[now.y] == c[now.z])
			{
				to.x=now.x;
				to.y=now.y+1;
				to.z=now.z+1;
				dp[to.x][to.y][to.z] += dp[now.x][now.y][now.z];
				dp[to.x][to.y][to.z] %= mod;
				if(!hash[to.x][to.y][to.z])
				{
					hash[to.x][to.y][to.z] = true;
					q.push(to);
				}
			}
			if(now.y<sb && f<sd &&  b[now.y] == d[f])
			{
				to.x=now.x;
				to.y=now.y+1;
				to.z=now.z;
				dp[to.x][to.y][to.z] += dp[now.x][now.y][now.z];
				dp[to.x][to.y][to.z] %= mod;
				if(!hash[to.x][to.y][to.z])
				{
					hash[to.x][to.y][to.z] = true;
					q.push(to);
				}
			}
		}
		return dp[sa][sb][sc];
	}

};


  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值