반응형
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 | 31 |
Tags
- 소프티어
- @P0
- 파라메트릭
- OFFSET
- 경력
- BFS
- 13908
- boj #19237 #어른 상어
- 백트래킹
- 처우협의
- 매개변수탐색
- 성적평가
- 오퍼레터
- 6987
- dfs
- 백준
- 이분탐색
- 연결요소
- 물채우기
- 기술면접
- incr
- 퇴사통보
- compose
- BOJ
- msSQL
- Kafka
- Docker
- upper_bound
- 처우산정
- softeer
Archives
- Today
- Total
기술 블로그
외발 뛰기(JUMPGAME) 본문
728x90
반응형
https://algospot.com/judge/problem/read/JUMPGAME
2가지 방법의 코드가 있다.
첫 번째는 내가 푼 BFS 방식이고,
두 번째는 책에 나와있는 재귀 호출(동적 계획법, 메모이제이션)로 푼 방식이다.
참고로, 첫 번째 코드(BFS)의 18 ~ 19번 째 줄 dy, dx 배열은 지워도 된다. 안 쓰였음. (왜 안 지웠지?)
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 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 | #include <iostream> #include <queue> #include <stack> #include <cstdio> #include <vector> #include <cstring> #include <string> #include <math.h> #include <algorithm> #include <map> using namespace std; int Map[102][102] = { 0, }; int N = 0; int dy[4] = { 0, 1, 0, -1 }; int dx[4] = { 1, 0, -1, 0 }; bool BFS() { queue<pair<int, int> > q; bool visit[102][102] = { false, }; q.push({ 0, 0 }); visit[0][0] = true; while (!q.empty()) { int qSize = q.size(); while (qSize--) { int r = q.front().first; int c = q.front().second; q.pop(); if (r == N - 1 && c == N - 1) return true; int ny = r + Map[r][c]; int nx = c + Map[r][c]; if (0 <= ny && ny < N && !visit[ny][c]) { q.push({ ny, c }); visit[ny][c] = true; } if (0 <= nx && nx < N && !visit[r][nx]) { q.push({ r, nx }); visit[r][nx] = true; } } } return false; } int main(void) { int T = 0; scanf("%d", &T); while (T--) { memset(Map, 0, sizeof(Map)); scanf("%d", &N); for (int i = 0; i < N; i++) for (int j = 0; j < N; j++) scanf("%d", &Map[i][j]); if (BFS()) printf("YES\n"); else printf("NO\n"); } return 0; } | cs |
동적 계획법(메모이제이션)
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 | #include <iostream> #include <queue> #include <stack> #include <cstdio> #include <vector> #include <cstring> #include <string> #include <math.h> #include <algorithm> #include <map> using namespace std; int Map[102][102] = { 0, }; int cache[102][102] = { 0, }; int N = 0; int jump(int y, int x) { if (y >= N || x >= N) return 0; if (y == N - 1 && x == N - 1) return 1; int & ret = cache[y][x]; if (ret != -1) return ret; int jumpSize = Map[y][x]; return ret = (jump(y, x + jumpSize) || jump(y + jumpSize, x)); } int main(void) { int T = 0; scanf("%d", &T); while (T--) { scanf("%d", &N); memset(Map, 0, sizeof(Map)); for (int i = 0; i < N; i++) for (int j = 0; j < N; j++) cache[i][j] = -1; for (int i = 0; i < N; i++) for (int j = 0; j < N; j++) scanf("%d", &Map[i][j]); if (jump(0, 0) == 1) printf("YES\n"); else printf("NO\n"); } return 0; } | cs |
728x90
반응형
'알고리즘 문제 > AlgoSpot' 카테고리의 다른 글
삼각형 위의 최대 경로(TRIANGLEPATH) (0) | 2019.01.11 |
---|---|
Wildcard(Wildcard) (0) | 2019.01.10 |
틱택토(TICTACTOE) (0) | 2019.01.08 |
울타리 잘라내기(FENCE) (0) | 2019.01.07 |
쿼드 트리 뒤집기(QUADTREE) (0) | 2019.01.07 |