作者:沈大森 链接:https://ac.nowcoder.com/discuss/374726?type=101&order=0&pos=1&page=0 来源:牛客网 #include<stdio.h> #include<string.h> int dx[] = {-1, 0, 1, 0}; int dy[] = {0, 1, 0, -1}; int fire[32][32],n,m,qi,qj; char a[32][32]; struct node{ int ci,cj; int step; }queue[1000]...