摘要: 1 #include 2 #include 3 #include 4 using namespace std; 5 char map[110][110]; 6 int vis[110][110]; 7 int sum,n,m; 8 int dfs(int x,int y) 9 { 10 int u[][2]={-1,-1,-1,0,-1,1,0,-1,0,1,1,-1... 阅读全文
posted @ 2017-06-08 22:04 TTTCoder 阅读(202) 评论(0) 推荐(0) 编辑