老鼠吃奶酪。

#include <iostream>
#include <cstdio>
#include <vector>
#include <queue>


using namespace std;


struct PP //位置结构体
{
int x;
int y;
}te, nt;


int grid[100][100];
int isPath(int m,int n)
//int isPath(int **grid, int m, int n)
{
int dirx[] = { 1,0,-1,0 };//方向 移动标志
int diry[] = { 0,1,0,-1 };
int i;
te.x = 0; te.y = 0;//左上角的0,0位置开始 
if (grid[0][0] == 0) return 0;
//全局数组 访问标志 vis
queue<PP> q;
q.push(te);
vector<vector<int > >vis;
vector<int> temp;


for (i = 0; i < n; i++) 
{
temp.push_back(0);
}
for (i = 0; i< m; i++) 
{
vis.push_back(temp);
}


vis[te.x][te.y] = 1;


while (q.size() >= 1)
{
te = q.front();//取点
if (grid[te.x][te.y] == 9) return 1;
q.pop();
for (i = 0; i < 4; i++) {
nt.x = te.x + dirx[i];
nt.y = te.y + diry[i];
if (nt.x < 0 || nt.x >= m || nt.y < 0 || nt.y >= n || grid[nt.x][nt.y] == 0 || vis[nt.x][nt.y] == 1) 
{
continue;
}
else {
q.push(nt);
vis[nt.x][nt.y] = 1;
}
}
}
return 0;
}




int main()
{
//freopen("in.txt", "r", stdin);
int m, n, re;
char *a = "";
int *b = NULL;


int i, j;
//while (scanf("%d%d", &m, &n) != EOF)
cin >> m >> n;
{
printf("%d\n", m);
for (i = 0; i<m; i++) {
for (j = 0; j<n; j++) {
//scanf("%d", &grid[i][j]);
cin >> grid[i][j];
}
}
re = isPath(m, n);
printf("%d\n", re);
}
cout << "Hello world!" << endl;
return 0;
}

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

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值