蓝桥国赛--玩具蛇(回溯)

思路

数据并不大,直接暴力dfs回溯就行,用一个标记数组b来表示哪个格子没被走,这个蛇得90°转向和向前就是说不能走已经走过的地方,细节见代码。

Code

#include<iostream>

using namespace std;
typedef long long ll;

const int Max = 1e6 + 5;
int b[100][100];
int dp[100][100];
int sec[8][2] = {
    {
   1,0},{
   -1,0},{
   0,1},{
   0,-1} };
ll sum = 0;
void dfs(int x, int y,int n)
{
   
	if (n == 16) {
   
		sum++;return;
	}
	for (int i = 0;i <= 3;i++)
	{
   
		int tx = x + sec[i][0];
		int ty = y + sec[i][1];
		if (tx <= 4 && tx >= 1 && ty <= 4 && ty >= 1 && b[tx][ty]==0)
		{
   
			b[tx][ty] = 1;
			dfs(tx, ty, n + 1);
			b[tx][ty] = 0;
		}
	}
	
}

int main()
{
   
	for (int i = 1;i <= 4;i++)
	{
   
		for (int j = 1;j <= 4;j++)
		{
   
			b[i][j] = 1;
			dfs(i, j, 1);
			b[i][j] = 0;
		}
	}
	cout << sum;
	
}
全部评论

相关推荐

野猪不是猪🐗:把你的学校加黑,加粗,斜体,下划线,描边,内阴影,内发光,投影,外发光,再上渐变色,居中,放大到最大字号,再把简历里其它内容删了,就行了
点赞 评论 收藏
分享
评论
点赞
收藏
分享
牛客网
牛客企业服务