๋ฐฑ์ค BaekJoon (ํ ๋งํ , 7569๋ฒ) C++
queue๋ฅผ ์ด์ฉํ bfs๋ฅผ ํ ๋ for๋ฌธ์ ์กฐ๊ฑด์ ๋ณํ์ง ์๋ ๊ฐ์ผ๋ก ๋จผ์ ํ ๋นํ๊ณ ์งํํ์. ์ฌ๊ธฐ์๋ int size = q.size(); ๋ก ๋จผ์ size๋ฅผ ๊ณ ์ ์ํค๊ณ for๋ฌธ์ ๋๋ ค์ผ ํ๋ค. #include #include #include #include using namespace std; int arr[101][101][101]; int visited[101][101][101] = {0,}; int dim[6][3] = { {0,0,1}, {0,0,-1}, {0,1,0}, {0,-1,0}, {-1,0,0}, {1,0,0}}; int main() { ios_base::sync_with_stdio(false); cin.tie(NULL); int row = 0, col = 0, height =0;..
2022. 1. 11.