## 第一题: dfs只能过50%。测试用例,全过了。不知道啥情况没考虑到、、、、 import java.util.*; public class Huawei1 { static List<String> list = null; static boolean[][] visited; static int m, n; static int[][] dir = {{0, 1}, {1, 0}, {0, -1}, {-1, 0}, {1, 1}, {-1, -1}, {1, -1}, {-1, 1}}; public stat...