티스토리 뷰
BOJ :: 백준 :: 1103 :: 게임
출처 : https://www.acmicpc.net/problem/1103
#include <iostream>
#include <algorithm>
using namespace std;
int N, M;
int map[51][51], dp[51][51];
bool visited[51][51];
int dir[4][2] = { {1,0},{-1,0},{0,1},{0,-1} };
inline bool check(int i, int j) { return ((i >= 0 && j >= 0 && i < N && j < M) ? true : false); }
int dfs(int i, int j) {
if (!check(i, j) || map[i][j] == 999) return 0;
if (visited[i][j]) {
cout << -1 << endl; exit(0);
}
int &ans = dp[i][j];
if (ans != -1) return ans;
visited[i][j] = true;
for (int d = 0; d < 4; d++) ans = max(ans, dfs(i + dir[d][0] * map[i][j], j + dir[d][1] * map[i][j]) + 1);
visited[i][j] = false;
return ans;
}
int main() {
std::ios::sync_with_stdio(false);
cin >> N >> M; char tmp;
for (int i = 0; i < N; i++) for (int j = 0; j <M; j++) {
scanf(" %c", &tmp); map[i][j] = ((tmp == 'H') ? 999 : tmp - '0'); dp[i][j] = -1;
}
cout << dfs(0, 0) << endl;
return 0;
}
'알고리즘 > BOJ' 카테고리의 다른 글
[BOJ 2589] 보물섬 (0) | 2018.09.18 |
---|---|
[BOJ 2174] 로봇 시뮬레이션 (0) | 2018.08.27 |
[BOJ 1937] 욕심쟁이 판다 (0) | 2018.08.26 |
[BOJ 15683] 감시 (0) | 2018.08.24 |
[BOJ 9466] 텀 프로젝트 (0) | 2018.08.05 |
- Total
- Today
- Yesterday
- 삼성
- 백준
- STL
- scanf
- 알고리즘
- 새로운 게임 2
- 17144
- 17837
- SWEA
- 2018 KAKAO BLIND RECRUITMENT
- 17142
- boj
- DP
- 이차원 배열과 연산
- 게리맨더링 2
- 팁
- hackerrank
- 17140
- 시간 복잡도
- 역량 테스트
- 2018 카카오 블라인드 채용
- DFS
- 미세먼지 안녕!
- 입출력
- 연구소 3
- 17779
- SW Expert Academy
- string
- 트렌드
- 17143
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |