Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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
- 코딩테스트
- EnvCommandError
- 주니어개발자역량강화
- 파이썬 map 함수
- print sep
- 파이썬 클래스
- 파이썬
- print("""
- 항해플러스
- Fatal Python error: init_fs_encoding: failed to get the Python codec of the filesystem encoding
- 파이썬 int()
- vscode cp949
- Til
- 파이썬 sep
- 항해
- MomentumParameters
- 개발자사이드프로젝트
- 주니어개발자멘토링
- fatal:not a git repository
- 파이썬 |
- 백준
- 99클럽
- cp949
- 항해99
- 10430번
- 99클럽 #99일지 #코딩테스트 #개발자스터디 #항해 #til
- not a git repository
- 코딩부트캠프후기
- 개발자스터디
- 99일지
Archives
- Today
- Total
선발대
[스파르타] 99클럽 2기 코테스터디 20일차 TIL / leet 1043 본문
LeetCode: 1043. Partition Array for Maximum Sum (링크)
class Solution:
def maxSumAfterPartitioning(self, arr: List[int], k: int) -> int:
dp = [0] * k
dp[0] = arr[0]
for i in range(1, len(arr)):
cur_max = 0
max_at_i = 0
for j in range(i, i-k, -1):
if j < 0:
break
cur_max = max(cur_max, arr[j])
window_size = i - j + 1
cur_sum = cur_max * window_size
sub_sum = dp[(j - 1) % k] if j > 0 else dp[-1]
max_at_i = max(max_at_i, cur_sum + sub_sum)
dp[i % k] = max_at_i
return dp[(len(arr)-1) % k]
return check
참고한 풀이: https://www.youtube.com/watch?v=kWhy4ZUBdOY
'스파르타코딩클럽 > 활동 내용' 카테고리의 다른 글
[스파르타] 99클럽 2기 코테스터디 22일차 TIL / 입국심사 (0) | 2024.06.10 |
---|---|
[스파르타] 99클럽 2기 코테스터디 21일차 TIL / leet 1277 (0) | 2024.06.09 |
[스파르타] 99클럽 2기 코테스터디 19일차 TIL / leet 1641 (0) | 2024.06.07 |
[스파르타] 99클럽 2기 코테스터디 18일차 TIL / leet 894 (0) | 2024.06.06 |
[스파르타] 99클럽 2기 코테스터디 17일차 TIL / 구명보트 (1) | 2024.06.05 |
Comments