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
- leetcode풀이
- python xor
- 릿코드풀이
- 잇츠디모
- python priority queue
- 파이썬릿코드풀기
- python Leetcode
- 릿코드 파이썬
- 파이썬 알고리즘
- 릿코드풀기
- python 릿코드
- 알고리즘풀이
- 릿코드
- 알고리즘풀기
- 파이썬알고리즘풀기
- 상가수익률계산기
- 코틀린기초
- python 알고리즘
- leetcode 풀기
- 파이썬릿코드
- binary search
- 파이썬 알고리즘 풀기
- python sorted
- leetcode풀기
- 릿코드 풀기
- 파이썬 릿코드
- 파이썬 프로그래머스
- 파이썬알고리즘
- LeetCode
- python zip_longest
Archives
- Today
- Total
소프트웨어에 대한 모든 것
LeetCode 풀기 - 1413. Minimum Value to Get Positive Step by Step Sum 본문
알고리즘/LeetCode
LeetCode 풀기 - 1413. Minimum Value to Get Positive Step by Step Sum
앤테바 2021. 11. 12. 08:34반응형
1413. Minimum Value to Get Positive Step by Step Sum
문제)
솔루션1)
class Solution:
def minStartValue(self, nums: List[int]) -> int:
if nums[0] > 0:
start = 1
else:
start = abs(nums[0]) + 1
while True:
r = start
for n in nums:
if r+n <= 0:
break
r += n
else:
return start
start += 1
솔루션2)
계속 누적해서 더한 경우의 가장 작은 값이 나올텐데, 이 값을 1 이상으로 만들어주는 값을 찾으면 된다.
아래 테이블과 값이 초기 값을 0 으로 주고 계속 더해 나갔을 때 가장 최소값은 -4이다.
그렇다면 5 이상의 값을 초기값을 설정해서 계산하게되면 최소값을 1이 되기 때문에 값이 5가 되는 것이다.
idx | nums[i] | sum | 최소값 |
0 | -3 | 0 (초기값) - 3 = -3 | -3 |
1 | 2 | -3 + 2 = -1 | -4 |
2 | -3 | -1 - 3 = -4 | -4 |
3 | 4 | -4 + 4 = 0 | -4 |
4 | 2 | 0 + 2 = 2 | -4 |
class Solution:
def minStartValue(self, nums: List[int]) -> int:
return abs(min(accumulate(nums, initial=0))) + 1
반응형
'알고리즘 > LeetCode' 카테고리의 다른 글
LeetCode 풀기 - 876. Middle of the Linked List (0) | 2021.11.15 |
---|---|
LeetCode 풀기 - 739. Daily Temperatures (0) | 2021.11.15 |
LeetCode 풀기 - 167. Two Sum II - Input Array Is Sorted (0) | 2021.11.12 |
LeetCode 풀기 - 283. Move Zeroes (0) | 2021.11.12 |
LeetCode 풀기 - 46. Permutations (0) | 2021.11.11 |
Comments