程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> C語言 >> C++ >> C++入門知識 >> POJ 1856 Sea Battle(BFS).

POJ 1856 Sea Battle(BFS).

編輯:C++入門知識

POJ 1856 Sea Battle(BFS).


~~~~

題意: 給你一個R*C的圖,求其由圖中連通‘#“所組成的矩形的個數。

注意: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.".

所以若有一組連通的’#‘不能組成矩形,則輸出 Bad placement。

題目鏈接:http://poj.org/problem?id=1856

~~~~

思路:對每個’#‘進行DFS,求其’#‘的個數s(就是面積)。DFS同時,記錄y可以搜到的最左和最右位置,記錄x可以搜到的最上和最下位置。

則若 s==(r-l+1)*(u-d+1),則 tot++..

~~~~

#include
#include
#include
#include
#include
#include
#include
#define N 1111
using namespace std;

int tot,n,m;
int s,l,r,u,d;
char g[N][N];
bool ok(int x,int y)
{
    return (x>=0 && x=0 && y

  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved