zoj2097-Walking on a Chessboard

有点郁闷,我就像怎么老是wa,看了别人的代码才发现原来那个状态是这个意思,最可恶的就是cost一个要按照累计值,一个只是计算值= =题目一点都没有区别开来

#include<iostream>
#include<algorithm>
#include<memory.h>
#include<queue>
using namespace std;

struct point
{
	int x,y;
	int state;
	int val;
}start, temp, other;

int n1,n2,m1,m2;
int num[8][8];
int status[8][8][5];
int direction[4][2] = {{0,1},{0,-1},{1,0},{-1,0}};
int cost;

void BFS()
{
	queue<point> que;
	start.x = n1;
	start.y = n2;
	start.state = 1;
	start.val = 0;
	que.push(start);

	while (!que.empty())
	{
		temp = que.front();
		que.pop();
		if( temp.x == m1 && temp.y == m2) 
		{
			if(temp.val < cost)
				cost = temp.val;
		}

		for(int i=0; i<4; i++)
		{
			int x = temp.x + direction[i][0];
			int y = temp.y + direction[i][1];
			if( x>0 && x<=8 && y>0 && y<=8 )
			{
				other.x = x;
				other.y = y;
				other.val = temp.val + temp.state * num[x-1][y-1];
				other.state = (temp.state * num[x-1][y-1]) % 4 + 1;	
				if( status[x-1][y-1][other.state] == 0 || other.val < status[x-1][y-1][other.state] )
				{
					status[x-1][y-1][other.state] = other.val;
					que.push(other);
				}
			}
		}
	}
}

int main()
{
	while( cin>>n1>>n2>>m1>>m2 && n1!=0 && n2!=0 && m1!=0 && m2!=0 )
	{
		for( int i=0; i<8; i++)
			for( int j=0; j<8; j++)
				cin>>num[i][j];	
		memset(status, 0, sizeof(status));
		cost = (1 << 30);
		BFS();
		cout<<cost<<endl;
	}
	return 0;
}


 

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值