题解 CF1063B Labyrinth
Posted little-sun0331
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了题解 CF1063B Labyrinth相关的知识,希望对你有一定的参考价值。
题解 CF1063B 【Labyrinth】
完了我发现我做CF的题大部分思路都和别人不一样qwq
这道题其实很水,不至于到紫题
我们只要bfs一下,向四个方向剪下枝,就A了(好像还跑的蛮快?)
是一道锻炼代码能力的好题
Code:
#include <bits/stdc++.h>
#define check(x, y) (x >= 0 && x < n && y >= 0 && y < m)//判断是否越界
const int MaxN = 2010;
const int dx[] = {0, 1, -1, 0}, dy[] = {-1, 0, 0, 1};//bfs方向数组
struct p
{
int x, y;
int cntx, cnty;
};
int ans;
int n, m, x, y, limx, limy;
std::string s[MaxN];
int vis[MaxN][MaxN];
int disx[MaxN][MaxN], disy[MaxN][MaxN];
void bfs(int x, int y)
{
memset(disx, 0x3f, sizeof(disx));
memset(disy, 0x3f, sizeof(disy));
std::queue<p> q;
q.push((p){x, y, 0, 0});
disx[x][y] = disy[x][y] = 0;
while (!q.empty())
{
p tmp = q.front();
q.pop();
x = tmp.x, y = tmp.y;
for (int i = 0; i <= 3; i++)
{
int nx = x + dx[i], ny = y + dy[i];
if (!check(nx, ny) || s[nx][ny] == ‘*‘)//当前位置是否合法
continue;
int cntx = tmp.cntx + bool(dy[i] == -1), cnty = tmp.cnty + bool(dy[i] == 1);//计算向左/右走步数
if (cntx < std::min(disx[nx][ny], limx + 1) || cnty < std::min(disy[nx][ny], limy + 1))//判断,剪枝
{
disx[nx][ny] = cntx;
disy[nx][ny] = cnty;//更新向左/右走步数
q.push((p){nx, ny, cntx, cnty});
}
}
}
}
int main()
{
scanf("%d%d", &n, &m);
scanf("%d%d", &x, &y), --x, --y;
scanf("%d%d", &limx, &limy);
for (int i = 0; i < n; i++)
std::cin >> s[i];
bfs(x, y);
for (int i = 0; i < n; i++)
for (int j = 0; j < m; j++)
if (disx[i][j] <= limx && disy[i][j] <= limy)
++ans;//统计答案
printf("%d
", ans);
return 0;
}
以上是关于题解 CF1063B Labyrinth的主要内容,如果未能解决你的问题,请参考以下文章
非原创codeforces 1063B Labyrinth 01bfs
CF679BTheseus and labyrinth(数学,贪心)
CF676DTheseus and labyrinth(BFS,最短路)