Lang:G++
Edit12345678910111213141516171819202122232425262728293031#include <iostream>#include <stdio.h>#include <stdlib.h>#include <vector>#include <map>#include <string>#include <queue>#include <algorithm>#include <limits>using namespace std;int n, m;const int N = 100;const int M = 100;char str[N+1][M+1];int dd[N + 1][M + 1];int direction[4][2] = {{ -1, 0 }, { 0, -1 }, { 0, 1 }, { 1, 0 }};int direction2[3][2] = { { 0, 1 }, { 1, 0 } };#define INT_MAX 2147483647int main(){scanf("%d %d", &n, &m);for (int i = 0; i < n; ++i)for (int j = 0; j < m; ++j)dd[i][j] = INT_MAX;for (int i = 0; i < n; ++i)scanf("\n%s", str[i]);int a, b;for (int i = 0; i < n; ++i)for (int j = 0; j < m; ++j)