문제
Given a triangle array, return the minimum path sum from top to bottom.
For each step, you may move to an adjacent number of the row below. More formally, if you are on index i on the current row, you may move to either index i or index i + 1 on the next row.
예시
Example 1:
Input: triangle = [[2],[3,4],[6,5,7],[4,1,8,3]]
Output: 11
Explanation: The triangle looks like:
2
3 4
6 5 7
4 1 8 3
The minimum path sum from top to bottom is 2 + 3 + 5 + 1 = 11 (underlined above).
Example 2:
Input: triangle = [[-10]]
Output: -10
제약 조건
Constraints:
- 1 <= triangle.length <= 200
- triangle[0].length == 1
- triangle[i].length == triangle[i - 1].length + 1
- -104 <= triangle[i][j] <= 104
해결 과정
다이나믹 프로그래밍... 🤯
아직 나에게는 멀고 먼 산이라고 느껴진다...
알고리즘 열심히 공부해서 다시 도전해보자...😭
진짜 오늘 하루종일 붙잡고 있는데 이 문제는 도무지 모르겠다 ...
해결 코드 (미완성)
/**
* @param {number[][]} triangle
* @return {number}
*/
var minimumTotal = function(triangle) {
let dp = [];
for(let i = 0 ; i < triangle.lenth ; i++){
dp.push(0);
}
for(let row in triangle){
for(){
dp[i] = n + Math.min(dp[i], dp[i + 1]);
}
}
return dp[0];
};
참고 사이트
https://www.youtube.com/watch?v=OM1MTokvxs4
'leetCode' 카테고리의 다른 글
[Easy] 231. Power of Two (3) | 2022.05.24 |
---|---|
[Easy] 191. Number of 1 Bits (0) | 2022.05.24 |
[Medium] 198. House Robber (0) | 2022.05.23 |
[Easy] 70. Climbing Stairs (3) | 2022.05.23 |
[Medium] 784. Letter Case Permutation (0) | 2022.05.19 |
Comment