[dfs] [연결 요소] 단지번호붙이기 2667
단지번호붙이기 2667 풀이코드 ( 입출력 틀림 ) #include #include #include #include using namespace std; // 2667 단지번호붙이기 int board[25][25]; bool isVisit[25][25]; int n; int dfs(int y, int x){ isVisit[y][x] = true; int ret = 0; vector np; np.push_back(pair(y + 1, x)); np.push_back(pair(y - 1, x)); np.push_back(pair(y, x - 1)); np.push_back(pair(y, x + 1)); for(int i = 0; i < 4; i++){ int ny = np[i].first; int nx = ..