일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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
- nestjs auth
- 스프링
- TypeORM
- nestjs typeorm
- @Component
- 코테
- 프로그래머스
- 파이썬
- git
- @Autowired
- 카카오
- 카카오 알고리즘
- thymeleaf
- 카카오 코테
- C++
- 구조체배열
- AWS
- 코딩테스트
- Spring
- 가상면접사례로배우는대규모시스템설계기초
- Nodejs
- python
- C언어
- OpenCV
- nestJS
- 알고리즘
- 해시
- 컴포넌트스캔
- 시스템호출
- spring boot
Archives
- Today
- Total
공부 기록장 💻
[알고리즘/최단경로] leetcode 64 minimum path sum 본문
4. leetcode 64 minimum path sum
64. Minimum Path Sum
[Minimum Path Sum - LeetCode
Level up your coding skills and quickly land a job. This is the best place to expand your knowledge and get prepared for your next interview.
leetcode.com](https://leetcode.com/problems/minimum-path-sum/)
문제
Given a m x n grid filled with non-negative numbers, find a path from top left to bottom right, which minimizes the sum of all numbers along its path.
Note: You can only move either down or right at any point in time.
Example 1:
Input: grid = [[1,3,1],[1,5,1],[4,2,1]]
Output: 7
Explanation: Because the path 1 → 3 → 1 → 1 → 1 minimizes the sum.
Example 2:
Input: grid = [[1,2,3],[4,5,6]]
Output: 12
Constraints:
m == grid.length
n == grid[i].length
1 <= m, n <= 200
0 <= grid[i][j] <= 100
문제 풀이
def solution(m,n,grid):
# 오른쪽과 아래로만 이동 가능하므로 0번 row, col은 각각 더해줌
# 첫번째 row 채우기
for i in range(1, m):
grid[i][0] += grid[i-1][0]
# 첫번째 col 채우기
for i in range(1, n):
grid[0][i] += grid[0][i-1]
print(grid)
# [0,0]부터 [m-1,n-1]까지 left, up중에서 오는 것중 작은 것을 선택하여 더한 결과값을 저장
for i in range(1,m):
for j in range(1,n):
grid[i][j] += min(grid[i-1][j], grid[i][j-1])
# print(i,j,grid[i][j])
# print(grid)
return grid[m-1][n-1]
# m x n grid
print(solution(2,3,[[1,2,3],[4,5,6]]))
print(solution(3,3,[[1,3,1],[1,5,1],[4,2,1]]))
728x90
반응형
'# CS Study > Algorithms' 카테고리의 다른 글
[알고리즘/해시] 순위 검색 (프로그래머스 2021 Kakao Blind Recruitment) (0) | 2022.09.13 |
---|---|
[알고리즘] 뉴스 클러스터링 (프로그래머스, 2018 Kakao Blind Recruitment) (0) | 2022.09.08 |
[알고리즘/DP] 백준 BOJ 11726 2xn 타일링 (0) | 2022.08.23 |
[알고리즘/DP] 프로그래머스 N으로 표현하기 (0) | 2022.08.23 |
[알고리즘/이진탐색] 백준 BOJ 2110 공유기 설치 문제 (0) | 2022.08.23 |
Comments