일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
Tags
- Decorator
- 컴퓨터의 구조
- DWG
- Protocol
- Convert Sorted List to Binary Search Tree
- 30. Substring with Concatenation of All Words
- 프로그래머스
- 시바견
- Python Implementation
- 315. Count of Smaller Numbers After Self
- 운영체제
- data science
- kaggle
- iterator
- concurrency
- shiba
- Python Code
- 43. Multiply Strings
- Substring with Concatenation of All Words
- attribute
- 109. Convert Sorted List to Binary Search Tree
- 밴픽
- 715. Range Module
- Class
- LeetCode
- 파이썬
- Regular Expression
- Python
- Generator
- t1
Archives
- Today
- Total
목록triangle (1)
Scribbling
LeetCode: 120. Triangle
전형적인 DP 문제 class Solution: def minimumTotal(self, triangle: List[List[int]]) -> int: dp = [[0] * (i+1) for i in range(len(triangle))] dp[0][0] = triangle[0][0] for i in range(1, len(triangle)): dp[i][0] = dp[i-1][0] + triangle[i][0] for j in range(1, i): dp[i][j] = min(dp[i-1][j-1], dp[i-1][j]) + triangle[i][j] dp[i][-1] = dp[i-1][-1] + triangle[i][-1] return min(dp[len(triangle)-1])
Computer Science/Coding Test
2021. 11. 3. 20:13