【BZOJ】1644: [Usaco2007 Oct]Obstacle Course 障碍训练课(bfs)
http://www.lydsy.com/JudgeOnline/problem.php?id=1644
这和原来一题用dp来做的bfs很像啊orz。。
我们设f[i][j][k]代表i,j这个点之前的方向过来的拐弯数
那么
f[fx][fy][i]=min(f[x][y][j]+1) 当i!=j
f[fx][fy][i]=min(f[x][y][j]) 当i=j
#include <cstdio> #include <cstring> #include <cmath> #include <string> #include <iostream> #include <algorithm> #include <queue> using namespace std; #define rep(i, n) for(int i=0; i<(n); ++i) #define for1(i,a,n) for(int i=(a);i<=(n);++i) #define for2(i,a,n) for(int i=(a);i<(n);++i) #define for3(i,a,n) for(int i=(a);i>=(n);--i) #define for4(i,a,n) for(int i=(a);i>(n);--i) #define CC(i,a) memset(i,a,sizeof(i)) #define read(a) a=getint() #define print(a) printf("%d", a) #define dbg(x) cout << #x << " = " << x << endl #define printarr(a, n, m) rep(aaa, n) { rep(bbb, m) cout << a[aaa][bbb]; cout << endl; } inline const int getint() { int r=0, k=1; char c=getchar(); for(; c<'0'||c>'9'; c=getchar()) if(c=='-') k=-1; for(; c>='0'&&c<='9'; c=getchar()) r=r*10+c-'0'; return k*r; } inline const int max(const int &a, const int &b) { return a>b?a:b; } inline const int min(const int &a, const int &b) { return a<b?a:b; } const int N=105, Q=N*N*N*3, dx[]={-1, 1, 0, 0}, dy[]={0, 0, -1, 1}; int mp[N][N], front, tail, n, f[N][N][4]; struct dat { int x, y; }q[Q]; int main() { read(n); char s[105]; int x, y, xx, yy; for1(i, 1, n) { scanf("%s", s+1); for1(j, 1, n) { if(s[j]=='x') mp[i][j]=1; else if(s[j]=='B') mp[i][j]=3, xx=i, yy=j; else if(s[j]=='A') mp[i][j]=2, x=i, y=j; } } CC(f, 0x7f); int ans=~0u>>1; q[tail].x=x, q[tail++].y=y; rep(i, 4) f[x][y][i]=0; while(front!=tail) { dat &t=q[front++]; if(front==Q) front=0; x=t.x, y=t.y; rep(i, 4) { int fx=dx[i]+x, fy=dy[i]+y; if(fx<1 || fy<1 || fx>n || fy>n || mp[fx][fy]==1) continue; rep(j, 4) { bool flag=0; if(i==j && f[fx][fy][i]>f[x][y][i]) { f[fx][fy][i]=f[x][y][i]; flag=1; } if(i!=j && f[fx][fy][i]>f[x][y][j]+1) { f[fx][fy][i]=f[x][y][j]+1; flag=1; } if(flag) { dat &t2=q[tail++]; if(tail==Q) tail=0; t2.x=fx; t2.y=fy; } } } } rep(i, 4) ans=min(f[xx][yy][i], ans); print(ans); return 0; }
Description
考虑一个 N x N (1 <= N <= 100)的有1个个方格组成的正方形牧场。有些方格是奶牛们不能踏上的,它们被标记为了'x'。例如下图:
. . B x .
. x x A .
. . . x .
. x . . .
. . x . .
贝茜发现自己恰好在点A处,她想去B处的盐块舔盐。缓慢而且笨拙的动物,比如奶牛,十分讨厌转弯。尽管如此,当然在必要的时候她们还是会转弯的。对于一个给定的牧场,请你计算从A到B最少的转弯次数。开始的时候,贝茜可以使面对任意一个方向。贝茜知道她一定可以到达。
Input
第 1行: 一个整数 N 行
2..N + 1: 行 i+1 有 N 个字符 ('.', 'x', 'A', 'B'),表示每个点的状态。
Output
行 1: 一个整数,最少的转弯次数。
Sample Input
3
.xA
...
Bx.
.xA
...
Bx.
Sample Output
2
HINT
Source
博客地址:www.cnblogs.com/iwtwiioi 本文为博主原创文章,未经博主允许不得转载。一经发现,必将追究法律责任。