250x250
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 |
Tags
- NIO
- math
- date
- javascript
- 스프링부트
- set
- 스택
- Properties
- List
- CSS
- 힙덤프
- priority_queue
- map
- sql
- 리소스모니터링
- JPA
- deque
- scanner
- html
- spring boot
- alter
- BFS
- dfs
- union_find
- string
- Java
- GC로그수집
- Calendar
- 큐
- Union-find
Archives
- Today
- Total
매일 조금씩
백준 16174번 : 점프왕 쩰리 c++ bfs 본문
728x90
반응형
bfs 문제이다.
오른쪽과 아래쪽으로만 이동이 가능하기 때문에 visited가 딱히 필요없을것이라고 생각했지만,
visited 처리를 해주지 않는다면 결과값은 제대로 나오지만 '메모리 초과'가 난다.
#include <iostream>
#include <vector>
#include <string>
#include <algorithm>
#include <queue>
using namespace std;
const int MAX = 3;
int n;
int map[MAX][MAX];
int visited[MAX][MAX];
int dx[2] = { 0,1 };
int dy[2] = { 1,0 };
int bfs(int x, int y) {
queue<pair<int,int>> q;
q.push(make_pair(x, y));
visited[0][0] = 1;
while (!q.empty()) {
int x = q.front().first;
int y = q.front().second;
int move = map[x][y];
visited[x][y] = 1;
q.pop();
for (int i = 0; i < 2; i++) {
int nx = x + move * dx[i];
int ny = y + move * dy[i];
if (!visited[nx][ny]) {
if (nx < n && ny < n) {
if (map[nx][ny] == -1) {
return 1;
}
q.push(make_pair(nx, ny));
//visited[nx][ny] = 1;
}
}
}
}
return 0;
}
int main(void) {
cin >> n;
for (int i = 0; i < n; i++) {
for (int j = 0; j < n; j++) {
cin >> map[i][j];
}
}
int result = bfs(0,0);
if (result) {
cout << "HaruHaru" << "\n";
}
else {
cout << "Hing" << "\n";
}
}
728x90
반응형
'알고리즘 > Graph (DFS, BFS)' 카테고리의 다른 글
Leet code (Medium) : 207. Course Schedule (BFS) - JAVA (0) | 2024.10.13 |
---|---|
백준 1388번 : 바닥 장식 C++ dfs (0) | 2021.06.25 |
프로그래머스 코테 연습 : DFS/BFS - 여행경로 C++ (0) | 2021.06.10 |
프로그래머스 코테 연습 : 단어 변환 [C++] DFS (0) | 2021.04.19 |
프로그래머스 코테 연습 : 네트워크 [C++] DFS/BFS (0) | 2021.04.18 |