「BZOJ1632」[Usaco2007 Feb] Lilypad Pond
Description
Farmer John 建造了一个美丽的池塘,用于让他的牛们审美和锻炼。这个长方形的池子被分割成了 M 行和 N 列( 1 ≤ M ≤ 30 ; 1 ≤ N ≤ 30 ) 正方形格子的 。某些格子上有惊人的坚固的莲花,还有一些岩石,其余的只是美丽,纯净,湛蓝的水。 贝茜正在练习芭蕾舞,她从一个莲花跳跃到另一个莲花,当前位于一个莲花。她希望在莲花上一个一个的跳,目标是另一个给定莲花。她能跳既不入水,也不到一个岩石上。 令门外汉惊讶的是,贝茜的每次的跳跃像中国象棋的马一样:横向移动1,纵向移动2,或纵向移动1,横向移动2。贝茜有时可能会有多达8个选择的跳跃。 Farmer John 在观察贝茜的芭蕾舞联系,他意识到有时候贝茜有可能跳不到她想去的目的地,因为路上有些地方没有莲花。于是他想要添加几个莲花使贝茜能够完成任务。一贯节俭的Farmer John想添加最少数量的莲花。当然,莲花不能放在石头上。 请帮助Farmer John确定必须要添加的莲花的最少数量。在添加的莲花最少基础上,算出贝茜从起始点跳到目标点需要的最少的步数。最后,还要算出满足添加的莲花的最少数量时,跳跃最少步数的跳跃路径的条数。
Input
第 1 行: 两个整数 M , N
第 2..M + 1 行:第 i + 1 行,第 i + 1 行 有 N 个整数,表示该位置的状态: 0 为水; 1 为莲花; 2 为岩石; 3 为贝茜开始的位置; 4 为贝茜要去的目标位置.
Output
第 1 行: 一个整数: 需要添加的最少的莲花数. 如果无论如何贝茜也无法跳到,输出 -1.
第 2 行: 一个整数: 在添加的莲花最少基础上,贝茜从起始点跳到目标点需要的最少的步数。如果第1行输出-1,这行不输出。 第 3 行: 一个整数: 添加的莲花的最少数量时,跳跃步数为第2行输出的值的跳跃路径的条数 如果第1行输出-1,这行不输出。
Sample Input
0 0 0 1 0 0 0 0
0 0 0 0 0 2 0 1
0 0 0 0 0 4 0 0
3 0 0 0 0 0 1 0
Sample Output
6
2
输出说明
至少要添加2朵莲花,放在了’x’的位置。
0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0
0 x 0 0 0 2 0 1 0 0 0 0 0 2 0 1
0 0 0 0 x 4 0 0 0 0 x 0 x 4 0 0
3 0 0 0 0 0 1 0 3 0 0 0 0 0 1 0
贝茜至少要条6步,有以下两种方案
0 0 0 C 0 0 0 0 0 0 0 C 0 0 0 0
0 B 0 0 0 2 0 F 0 0 0 0 0 2 0 F
0 0 0 0 D G 0 0 0 0 B 0 D G 0 0
A 0 0 0 0 0 E 0 A 0 0 0 0 0 E 0
题解
直接bfs。。。
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 |
#include<iostream> #include<cstdio> #include<cstring> #include<cstdlib> #include<algorithm> #include<cmath> #define inf 10000000 #define ll long long using namespace std; inline int read() { int x=0,f=1;char ch=getchar(); while(ch<'0'||ch>'9'){if(ch=='-')f=-1;ch=getchar();} while(ch>='0'&&ch<='9'){x=x*10+ch-'0';ch=getchar();} return x*f; } int head=0,tail=1; int n,m,ex,ey; int x[10005],y[10005]; int xx[8]={1,1,-1,-1,2,2,-2,-2},yy[8]={2,-2,2,-2,1,-1,1,-1}; int a[55][55],add[55][55],dis[55][55]; ll f[55][35]; bool inq[55][55]; void bfs() { while(head!=tail) { int nx=x[head],ny=y[head];head++; for(int k=0;k<8;k++) { int tx=nx+xx[k],ty=ny+yy[k]; if(tx<1||ty<1||tx>n||ty>m||a[tx][ty]==2)continue; int ta=add[nx][ny]+(a[tx][ty]==0); if(ta<add[tx][ty]) { add[tx][ty]=ta; dis[tx][ty]=dis[nx][ny]+1; f[tx][ty]=f[nx][ny]; if(inq[tx][ty])continue; inq[tx][ty]=1;x[tail]=tx;y[tail]=ty;tail++; } else if(ta==add[tx][ty]) { if(dis[nx][ny]+1<dis[tx][ty]) { dis[tx][ty]=dis[nx][ny]+1; f[tx][ty]=f[nx][ny]; if(inq[tx][ty])continue; inq[tx][ty]=1;x[tail]=tx;y[tail]=ty;tail++; } else if(dis[nx][ny]+1==dis[tx][ty]) { f[tx][ty]+=f[nx][ny]; if(inq[tx][ty])continue; inq[tx][ty]=1;x[tail]=tx;y[tail]=ty;tail++; } } } inq[nx][ny]=0; } } int main() { n=read();m=read(); for(int i=1;i<=n;i++) for(int j=1;j<=m;j++) { a[i][j]=read(); add[i][j]=dis[i][j]=inf; if(a[i][j]==3) { inq[i][j]=1; x[0]=i;y[0]=j;add[i][j]=dis[i][j]=0;f[i][j]=1; } else if(a[i][j]==4)ex=i,ey=j; } bfs(); if(add[ex][ey]==inf)puts("-1"); else { printf("%d\n%d\n%lld\n",add[ex][ey],dis[ex][ey],f[ex][ey]); } return 0; } |