반응형
간단한 BFS문제였습니다.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 | #include <iostream> #include <queue> using namespace std; int a[301][301], c[301][301], d[301][301]; int cnt, t, u, uf, v, vf, I; int dx[] = { -1,-2,-2,-1,1,2,2,1 }, dy[] = { -2,-1,1,2,2,1,-1,-2 }; void BFS(int i, int j) { queue < pair< int, int >> q; q.push(make_pair(i, j)); c[i][j] = 1; while (!q.empty()) { //x = 행, y = 열 int x = q.front().first; int y = q.front().second; q.pop(); for (int i = 0; i < 8; i++)//나이트가 이동할 수 있는 8방향 체크 { int nx = x + dx[i]; int ny = y + dy[i]; if (0 <= nx && nx < I && 0 <= ny && ny < I)//이동하려는 칸이 체스판의 범위 내에 있다면 { if (c[nx][ny] == 0) //체크가 안되어 있는지 확인하고 이동한다. { q.push(make_pair(nx, ny)); c[nx][ny] = 1; d[nx][ny] = d[x][y] + 1;//현재 위치를 큐에 넣어주고 경로를 1더해준다 } } } } } int main() { cin >> t; while (t--) { cin >> I; cin >> u >> v >> uf >> vf; a[u][v] = 1; a[uf][vf] = 2; BFS(u, v); cout << d[uf][vf] << '\n'; cnt = 0;//56번째 줄 까지는 초기화해주는 용도 for (int i = 0; i < 301; i++) for (int j = 0; j < 301; j++) { c[i][j] = 0; d[i][j] = 0; } a[u][v] = 0; a[uf][vf] = 0; } } | cs |
'Algorithm > BFS' 카테고리의 다른 글
(C++) - 백준(BOJ) 1389 : 케빈 베이컨의 6단계 법칙 (0) | 2017.03.10 |
---|---|
(C++) - 백준(BOJ)코딩 2468번 : 안전 영역 답 (0) | 2017.02.20 |
(C++) - 백준(BOJ)코딩 1012번 : 유기농 배추 답 (0) | 2017.02.18 |
(C++) - 백준(BOJ)코딩 1697번 : 숨바꼭질(BFS) (0) | 2017.02.15 |
(C++) - 백준(BOJ)코딩 7576번 : 토마토 답 (1) | 2017.02.09 |