摘要:
#include<cstdio> #include<string> using namespace std; int n,m; char map[105][105]; bool vis[105][105]; int cnt; int ans=-1; void dfs(int x,int y){ if 阅读全文
摘要:
#include<stdio.h> using namespace std; int n,m; int ans; char map[105][105]; bool vis[105][105]; void dfs(int x,int y){ if(x<0||x>=n||y<0||y>=m||vis[x 阅读全文