[蓝桥杯2015初赛]垒骰子

在这里插入图片描述
30分的代码(纯暴力dfs,超时)

#include<bits/stdc++.h>
using namespace std;
#define ll long long
const int mod=1e9+7;
int n,m;
int op[7];
bool conflict[7][7];
ll f(int up,int cnt)  //上层定好了朝上的数字为up的情况下,垒好cnt个骰子的方案数 
{
	if(cnt==0)
	{
		return 4;
	}
	ll ans=0;
	for(int upp=1;upp<=6;upp++)
	{
		if(conflict[op[up]][upp])
		{
			continue;
		}
		ans=(ans+f(upp,cnt-1))%mod;
	}
	return ans;
}
void init()
{
	op[1]=4;
	op[2]=5;
	op[3]=6;
	op[4]=1;
	op[5]=2;
	op[6]=3;
}
int main()
{
	init();
	scanf("%d%d",&n,&m);
	for(int i=0;i<m;i++)
	{
		int x,y;
		scanf("%d%d",&x,&y);
		conflict[x][y]=1;
		conflict[y][x]=1;	
	}
	ll ans=0;
	for(int up=1;up<=6;up++)
	{
		ans=(ans+4*f(up,n-1))%mod;
	}
	printf("%lld\n",ans);
}
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值