Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
Tags
- 01BFS
- 다이나믹프로그래밍
- 네트워크플로우
- DFS
- 시뮬레이션
- 세그먼트트리
- java
- PS
- 우선순위큐
- 완전탐색
- 재귀함수
- 백준
- 다익스트라
- 게더타운시작
- 알고리즘
- QUICKSTARTGUIDE
- 자바PS
- dp
- BFS
- YBMCOS
- 백준코딩테스트
- 구현
- GatherTown
- spring
- 이젠 골드구현도 어렵네..
- COSPRO
- deque
- 엘라스틱서치
- COSPROJAVA1급
- 취득후기
Archives
- Today
- Total
공부공간
BOJ - 7562 ) 나이트의 이동 본문
https://www.acmicpc.net/problem/7562
나이트가 이동할수 있는 경로를 FOR문으로 설정하여서 돌려준다.
VISIT 배열로 갔던곳을 다시 가지않게 설정해준다.
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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
|
#include <iostream>
#include <queue>
using namespace std;
int L , TC;
int start_x, start_y, end_x, end_y;
int map[301][301];
int ans[301];
bool visit[301][301];
void input() {
cin >> TC;
}
typedef struct {
int x, y, step;
}coordi;
int dx[] = {2,1,-1,-2,-2,-1,1,2};
int dy[] = {1,2,2,1,-1,-2,-2,-1};
int main(void){
input();
for (int i = 0 ; i < TC; i ++) {
cin >> L;
for (int y = 0; y < L; y++) {
for (int x = 0; x < L; x++) {
map[y][x] = 0;
visit[y][x] = false;
}
}
int res = 0;
cin >> start_x >> start_y;
cin >> end_x >> end_y;
coordi start = { start_x, start_y, 0 };
queue <coordi> Q;
Q.push(start);
while (!Q.empty()){
int x = Q.front().x;
int y = Q.front().y;
int step = Q.front().step;
if (x == end_x && y == end_y) {
res = step;
break;
}
Q.pop();
for (int index = 0; index < 8; index++) {
int nx = x + dx[index];
int ny = y + dy[index];
if (nx >= 0 && ny >= 0 && nx < L && ny < L) {
if (!visit[ny][nx]) {
visit[ny][nx] = true;
Q.push({ nx,ny,step + 1 });
}
}
}
}
ans[i] = res;
}
for (int index = 0; index < TC; index++) {
cout << ans[index] << "\n";
}
return 0;
}
|
'알고리즘 > 완전탐색(BFS,DFS)' 카테고리의 다른 글
BOJ - 7576 ) 토마토 (0) | 2020.01.19 |
---|---|
BOJ - 5427 ) 불 (0) | 2020.01.17 |
BOJ -2589 ) 보물섬 (0) | 2020.01.17 |
BOJ -2178 ) 미로탐색 (0) | 2020.01.16 |
BOJ - 4179) 불! (0) | 2019.12.26 |
Comments