https://softeer.ai/practice/7726 Softeer - 현대자동차그룹 SW인재확보플랫폼 softeer.ai소스코드#include #include #include #include using namespace std;struct Pos { int y, x; Pos() : y(0), x(0) {} Pos(int y, int x) : y(y), x(x) {}};int n, m;string board[1004][1004];int visitNamwoo[1004][1004];int visitGost[1004][1004];Pos exitPos;queuenamwooQ;queuegoastQ;int dy[4] = { -1,0,1,0 };int dx[4] = { 0,1,0,-1 };void GoastBF..