百度之星

01 题 简单dfs

#include
#include
#include
using namespace std;
const int N=105;
bool vis[N][N];
char s[N][N];
int n,m;
const int dx[]={-1,1,0,0};
const int dy[]={0,0,-1,1};
inline bool inbond(int x,int y)
{
    return x>=0&&x=0&&y

你可能感兴趣的:(百度之星)