时间限制: 1 s
 空间限制: 256000 KB
 题目等级 : 白银 Silver
题目描述 Description

在峰会期间,武装部队得处于高度戒备。警察将监视每一条大街,军队将保卫建筑物,领空将布满了F-2003飞机。此外,巡洋船只和舰队将被派去保护海岸线。不幸的是因为种种原因,国防海军部仅有很少的几位军官能指挥大型海战。因此,他们考虑培养一些新的海军指挥官,他们选择了“海战”游戏来帮助学习。

在这个著名的游戏中,在一个方形的盘上放置了固定数量和形状的船只,每只船却不能碰到其它的船。在这个题中,我们仅考虑船是方形的,所有的船只都是由图形组成的方形。编写程序求出该棋盘上放置的船只的总数。

输入描述 Input Description

输入文件头一行由用空格隔开的两个整数R和C组成,1<=R,C<=1000,这两个数分别表示游戏棋盘的行数和列数。接下来的R行每行包含C个字符,每个字符可以为“#”,也可为“.”,“#”表示船只的一部分,“.”表示水。

输出描述 Output Description

为每一个段落输出一行解。如果船的位置放得正确(即棋盘上只存在相互之间不能接触的方形,如果两个“#”号上下相邻或左右相邻却分属两艘不同的船只,则称这两艘船相互接触了)。就输出一段话“There are S ships.”,S表示船只的数量。否则输出“Bad placement.”。

样例输入 Sample Input

6 8

.....#.#

##.....#

##.....#

.......#

#......#

#..#...#

样例输出 Sample Output

There are 5 ships.

数据范围及提示 Data Size & Hint

和codevs 3492 差不多 加个判断就好 点此展开(codevs3492)

本题传送门  点此展开

#include <iostream>
#include <cstring>
#include <cstdio>
#include <cmath>
#include <cstdlib> using namespace std;
int flag,s,i,r,c,j,fx[]={,-,,},fy[]={,,-,},tot;
char t[][];
void ss(int x,int y)
{
int head=,tail=,f[][];
f[tail][]=x;
f[tail][]=y;
t[x][y]='.';
do{
head++;
for(int l=;l<;++l)
{
int xx=f[head][]+fx[l],yy=f[head][]+fy[l];
if(xx>=&&xx<r&&yy>=&&yy<c&&t[xx][yy]=='#')
{
tail++;
f[tail][]=xx;
f[tail][]=yy;
t[xx][yy]='.';
}
}
}while(head<tail);
int m=fabs(f[tail][]-x)+;
int n=fabs(f[tail][]-y)+;
if(n*m==tail)
tot++;
else
flag=;
}
int main()
{
cin>>r>>c;
for(i=;i<r;++i)
{
for(j=;j<c;++j)
cin>>t[i][j];
}
for(i=;i<r;++i)
{
for(j=;j<c;++j)
{
if(t[i][j]=='#')
ss(i,j);
}
}
if(flag) cout<<"Bad placement.";
else cout<<"There are "<<tot<<" ships.";
}
05-07 15:27