国产精品天干天干,亚洲毛片在线,日韩gay小鲜肉啪啪18禁,女同Gay自慰喷水

歡迎光臨散文網(wǎng) 會(huì)員登陸 & 注冊(cè)

P1596 [USACO10OCT]Lake Counting S

2023-03-14 15:20 作者:倉(cāng)鼠翞  | 我要投稿

#include<bits/stdc++.h>
using namespace std;
int n,m;
char g[101][101];
int ans=0;

void shensou(int x,int y)
{
? ?if(x<0||y<0||x>n||y>m)
? ? ? ?return;
? ?if(g[x+1][y]=='W')
? ?{
? ? ? ?//下一格
? ? ? ?g[x+1][y]='.';
? ? ? ?shensou(x+1,y);
? ?}
? ?if(g[x-1][y]=='W')
? ?{
? ? ? ?//上一格
? ? ? ?g[x-1][y]='.';
? ? ? ?shensou(x-1,y);
? ?}
? ?if(g[x][y+1]=='W')
? ?{
? ? ? ?//右一格
? ? ? ?g[x][y+1]='.';
? ? ? ?shensou(x,y+1);
? ?}
? ?if(g[x][y-1]=='W')
? ?{
? ? ? ?//左一格
? ? ? ?g[x][y-1]='.';
? ? ? ?shensou(x,y-1);
? ?}
? ?if(g[x+1][y+1]=='W')
? ?{
? ? ? ?//右下
? ? ? ?g[x+1][y+1]='.';
? ? ? ?shensou(x+1,y+1);
? ?}
? ?if(g[x+1][y-1]=='W')
? ?{
? ? ? ?//左下
? ? ? ?g[x+1][y-1]='.';
? ? ? ?shensou(x+1,y-1);
? ?}
? ?if(g[x-1][y-1]=='W')
? ?{
? ? ? ?//左上
? ? ? ?g[x-1][y-1]='.';
? ? ? ?shensou(x-1,y-1);
? ?}
? ?if(g[x-1][y+1]=='W')
? ?{
? ? ? ?//右上
? ? ? ?g[x-1][y+1]='.';
? ? ? ?shensou(x-1,y+1);
? ?}
}

int main()
{
? ?cin>>n>>m;
? ?for(int i=0;i<n;i++)
? ? ? ?for(int j=0;j<m;j++)
? ? ? ? ? ?cin>>g[i][j];
? ?for(int i=0;i<n;i++)
? ? ? ?for(int j=0;j<m;j++)
? ?{
? ? ? ? ? ?//從是有水塘的位置開(kāi)始深搜
? ? ? ? ? ?if(g[i][j]=='W')
? ? ? ? ? ?{
? ? ? ? ? ? ? ?g[i][j]='.';
? ? ? ? ? ? ? ?shensou(i,j);
? ? ? ? ? ? ? ?ans++;
? ? ? ? ? ?}
? ?}
? ?cout<<ans;
? ?return 0;
}

P1596 [USACO10OCT]Lake Counting S的評(píng)論 (共 條)

分享到微博請(qǐng)遵守國(guó)家法律
壶关县| 依安县| 仁布县| 碌曲县| 德化县| 冕宁县| 凤翔县| 阿克苏市| 方正县| 台山市| 平果县| 黑水县| 萨嘎县| 当涂县| 永康市| 闵行区| 镶黄旗| 南和县| 格尔木市| 梁河县| 临桂县| 梨树县| 屏山县| 仁化县| 峨边| 黎平县| 顺昌县| 汤原县| 丰都县| 宜宾市| 桂阳县| 和龙市| 德化县| 理塘县| 苍梧县| 麦盖提县| 衡水市| 岢岚县| 商河县| 金昌市| 洛隆县|