728x90
내려오면서 그때그때 합이 가장 큰 숫자를 골라서 내려오는 식으로 알고리즘 구성했다
전에 한번 풀어본 유형이라 빠르게 풀었음
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
|
#include <iostream>
#include <cstring>
#include <algorithm>
using namespace std;
int arr[501][501];
int dp[501][501];
int n;
int p(int x, int y) {
if (x == n) return 0;
int& ret = dp[x][y];
if (ret != -1) return ret;
return ret = arr[x][y] + max(p(x + 1, y), p(x + 1, y + 1));
}
int main() {
cin >> n;
for (int i = 0; i < n; i++)
for (int j = 0; j < i + 1; j++)
cin >> arr[i][j];
memset(dp, -1, sizeof(dp));
cout << p(0, 0);
return 0;
}
|
cs |
728x90
'PS > 백준' 카테고리의 다른 글
[백준 10844번] 쉬운 계단 수 C++ (0) | 2021.05.13 |
---|---|
[백준 2579번] 계단 오르기 C++ (0) | 2021.05.12 |
[백준 1149번] RGB거리 C++ (0) | 2021.05.12 |
[백준 9461번] 파도반 수열 c++ (0) | 2021.05.12 |
[백준 1904번] 01타일 C++ (0) | 2021.05.12 |