文章分类 -  广搜

摘要:#include<bits/stdc++.h>using namespace std;int n,m;int ans;char a[105][105];void dfs(int x,int y){ if(x>n||x<1||y>m||y<1||a[x][y]=='0')//判断是否出界,出界了就不用 阅读全文
posted @ 2022-08-24 19:18 崔浩翔 阅读(46) 评论(0) 推荐(0)