본문 바로가기

알고리즘 관련/BOJ

BOJ)1520 내리막 길

문제:icpc.me/1520


지도에서 자기보다 숫자가 낮은 곳으로 이동할 수 있을 때 0,0에서 n-1 ,m-1로 갈 수 있는 경로의 개수를 출력하는 문제이다.


우리는 다이나믹 프로그래밍을 이용하여 문제를 해결할 수 있다.


dp[x][y]는 0,0에서 x,y로 이동할 수 있는 경로의 수라고 정의한 뒤


4방향 탐색으로 테이블을 채워나가면 된다.


 

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
#include <cstdio>
#include <algorithm>
#include <cstring>
using namespace std;
int dx[] = { 0,0,-1,};
int dy[] = { -1,1,0,};
int n, m;
int chk(int x, int y) {
    return <= x&&< n && <= y&&< m;
}
int a[501][501];
int dp[501][501];
int func(int x, int y) {
    if (x == && y == 0)return 1;
    int &ret = dp[x][y];
    if (ret != -1)return ret;
    ret = 0;
    for (int i = 0; i < 4; i++) {
        int cx = dx[i] + x;
        int cy = dy[i] + y;
        if (!chk(cx, cy))continue;
        if (a[x][y] < a[cx][cy])
            ret += func(cx, cy);
    }
    return ret;
}
int main() {
    memset(dp, -1sizeof(dp));
    scanf("%d%d"&n, &m);
    for (int i = 0; i < n; i++) {
        for (int j = 0; j < m; j++)
            scanf("%d"&a[i][j]);
    }
    printf("%d\n", func(n - 1, m - 1));
    return 0;
}
cs


'알고리즘 관련 > BOJ' 카테고리의 다른 글

BOJ)12100 2048 (Easy)  (0) 2017.03.30
BOJ)13460 구슬탈출2  (6) 2017.03.30
BOJ)10422 괄호  (0) 2017.03.30
BOJ)1194 달이 차오른다, 가자.  (0) 2017.03.30
BOJ)2146 다리만들기  (0) 2017.03.30