程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> C語言 >> C++ >> 關於C++ >> hdu 2952 Counting Sheep

hdu 2952 Counting Sheep

編輯:關於C++
#include 
#include 
#include 
#include 
#include 
#include 
#include 
#include 
#include
#include 
#include 
#include 
#include 
using namespace std;

int n,m,vis[104][104];
int dx[]={0,0,1,-1};
int dy[]={-1,1,0,0};
char mp[104][104];

void dfs(int x,int y)
{
    vis[x][y]=1;
    int i,tx,ty;
    for(i=0;i<4;i++)
    {
        tx=dx[i]+x;
        ty=dy[i]+y;
        if(tx<0||tx>=n||ty>=m||ty<0) continue;
        if(vis[tx][ty]==1||mp[tx][ty]=='.') continue;
        dfs(tx,ty);
    }
}

int main()
{
   int t,cnt,i,j;
   scanf("%d",&t);
   while(t--)
   {
       scanf("%d%d",&n,&m);
       for(i=0;i
  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved