题目链接:https://ac.nowcoder.com/discuss/435795题目大意:思路:1.直接对bfs,记录f[i][j]:A到(i, j)的最小时间。然后B在bfs时就可以统计答案了。2.当然可以双向bfs。 1. #include <bits/stdc++.h> #define LL long long using namespace std; char a[1005][1005]; int xx[]={0, 0, 1, -1, -1, -1, 1, 1}; int yy[]={1, -1, 0, 0, 1, -1, -1, 1}; struct node{ ...