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 |
Tags
- 백준 15685
- 웹어플리케이션 서버
- 프로그래머스
- 백준 17779
- Coroutine
- 백준 16236
- spring security
- with recursive
- 파이썬
- Spring
- java 기술면접
- JPA
- Spring Boot
- sql 기술면접
- 백준 16719
- 백준
- MSA
- java
- springboot
- MySQL
- 백준 19238
- 백준 파이썬
- 프로래머스
- JVM
- 백준 17626
- spring cloud
- spring oauth
- 백준 16235
- Kotlin
- re.split
Archives
- Today
- Total
시작이 반
[백준] 11055번(python 파이썬) 본문
SMALL
현재 값(A[i]에서 이전 값들(A[0] ~ A[i-1])을 보면서 현재값보다 작으면서 dp(이전에 구한값)값이 가장 큰 값을 찾는다.
n = int(input())
a = list(map(int, input().split()))
dp = [0] * n
def sequence():
dp[0] = a[0]
for i in range(1, n):
max_value = 0
for j in range(i):
if a[i] > a[j]:
if abs(a[i] - a[j]) != 0:
max_value = max(max_value, dp[j])
max_index = dp.index(max_value)
dp[i] = dp[max_index] + a[i]
sequence()
print(max(dp))
LIST
'알고리즘 > 백준' 카테고리의 다른 글
[백준] 11053번(python 파이썬) (0) | 2021.02.24 |
---|---|
[백준] 11054번(python 파이썬) (0) | 2021.02.09 |
[백준] 2156번(python 파이썬) (0) | 2021.02.09 |
[백준] 1463번(python 파이썬) (0) | 2021.02.08 |
[백준] 2579번(python 파이썬) (0) | 2021.02.08 |