1890번 - 점프
점프할 때마다 맵이 줄어들기 때문에, DP로 풀 수 있었다.
따라서 D[x][y] = x,y 에서 도착지에 갈 수 있는 경우의 수
라고 점화식을 세우고 문제를 풀었다.
<정답 코드>
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 | #include<iostream> #include<string.h> using namespace std; long long D[101][101]; int map[101][101]; int n; long long go(int x, int y) { if (x >= n || y >= n) { return 0; } if (x == n - 1 && y == n - 1) { return 1; } if (x != n - 1 && y != n - 1 && map[x][y] == 0) { return 0; } if (D[x][y] >= 0) { return D[x][y]; } if (D[x][y] == -1) { D[x][y] = 0; } D[x][y] += (go(x+map[x][y],y)+go(x,y+map[x][y])); return D[x][y]; } int main() { cin >> n; memset(D, -1, sizeof(D)); for (int i = 0; i < n; i++) { for (int j = 0; j < n; j++) { cin >> map[i][j]; } } cout << go(0, 0) << "\n"; return 0; } | cs |
반응형