Poj1856sea battle (DFS)

Source: Internet
Author: User
Tags integer numbers
Link: HuangJing
Train of Thought: I was thinking about finding China Unicom quickly, but I don't know how to judge whether China Unicom is a standard boat. I can use the area to judge it only when I look at other people's questions... Now we know that it is easy for DFS to find China Unicom .. Note that if a ship breaks down, you don't need to find it. You can just output it directly... Question: sea battle
Time limit:1000 ms   Memory limit:30000 K
Total submissions:2809   Accepted:996

Description

During the summit, the armed forces will be highly active. the police will monitor Prague streets, the army will guard buildings, the Czech air space will be full of American F-16s. moreover, the ships and battle cruisers will be sent to guard the banks of the Vltava River. unfortunately, in the case of any incident, the Czech Admiralty have only a few captains able to control over the large sea battle. therefore, it was decided to educate new admirals. as an excellent preparation, the game of "sea battle" was chosen to help with their study program.

In this well-known game, a predefined number of ships of predefined shapes are placed on the square board in such a way that they cannot contact one another even with their corners. in this task, we will consider rectangular shaped ships only. the unknown number of rectangular ships of unknown sizes are placed on a rectangular board. all the ships are full rectangles built of hash characters. write a program that counts the total number of ships present in the field.

Input

The input consists of more scenarios. the description of each scenario begins with two integer Numbers R and C separated with a single space, 1 <= R, C <= 1000. these numbers give the number of rows and columns in the game field.

After these two numbers, there are R lines, each of them containing c characters. each character is either Hash ("#") or dot (". "). hashes denote ships, dots water.

Then, the next scenario description begins. At the end of the input, there will be a line containing two zeros instead of the field size.

Output

Output a single line for every scenario. if the ships were placed correctly (I. E ., there are only rectangles that do not touch each other even with a corner), print the sentence "there are s ships. "Where S is the number of ships.

Otherwise, print the sentence "Bad placement .".

Sample Input

6 6.....###...###...#..#..#.....#######6 8.....#.###.....###.....#.......##......##..#...#0 0

Sample output

Bad placement.There are 5 ships.

Source

CTU open2002
Code:
#include<cstdio>#include<cstring>#include<iostream>#include<algorithm>#define INF 0x3f3f3f3fusing namespace std;const int maxn=1000+10;char map[maxn][maxn];int min_x,min_y,max_x,max_y;int n,m,cal;int dx[]={-1,1,0,0,-1,-1,1,1};int dy[]={0,0,-1,1,-1,1,-1,1};void read_Graph(){    char str[maxn];    for(int i=1;i<=n;i++)    {        scanf("%s",str+1);        for(int j=1;j<=m;j++)           map[i][j]=str[j];    }}bool check(int x,int y){   if(x>=1&&x<=n&&y>=1&&y<=m)        return true;   return false;}int dfs(int x,int y){    min_x=min(min_x,x);    max_x=max(max_x,x);    min_y=min(min_y,y);    max_y=max(max_y,y);    map[x][y]='.';    for(int i=0;i<8;i++)    {        int tx=x+dx[i];        int ty=y+dy[i];        if(map[tx][ty]=='#'&&check(tx,ty))        {            cal++;            dfs(tx,ty);        }    }    return cal;}void solve(){    int ans=0,area,i,j;    for(i=1;i<=n;i++)    {        for(j=1;j<=m;j++)        {            if(map[i][j]=='#')            {                min_x=max_x=i;                min_y=max_y=j;                cal=1;                area=dfs(i,j);                if(area==(max_x-min_x+1)*(max_y-min_y+1))                    ans++;                else                {                    ans=-1;                    break;                }            }           if(ans==-1)            break;        }    }    if(ans==-1)        printf("Bad placement.\n");    else        printf("There are %d ships.\n",ans);}int main(){    while(~scanf("%d%d",&n,&m))    {        if(n==0&&m==0) return 0;        read_Graph();        solve();    }    return 0;}


Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.