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
- 백준 파이썬
- 백준 17779
- 백준 16719
- 파이썬
- 백준 16235
- spring security
- Kotlin
- Spring
- Spring Boot
- java
- 프로그래머스
- 백준 15685
- with recursive
- 백준 19238
- JPA
- 백준
- re.split
- JVM
- 웹어플리케이션 서버
- sql 기술면접
- 백준 16236
- spring oauth
- 백준 17626
- MSA
- 프로래머스
- spring cloud
- Coroutine
- springboot
- java 기술면접
- MySQL
Archives
- Today
- Total
시작이 반
[백준] 11053번(python 파이썬) 본문
SMALL
수열중 가장 긴 증가하는 부분 수열을 구하는 문제
dp[i] = (a[i] > a[0:i-1]보다 작은 값들 중) max( dp[0 : i-1] ) + 1
n = int(input())
a = list(map(int, input().split()))
dp = [0] * n
def longIncSequence():
dp[0] = 1
for i in range(1, n):
max_value = 0
for j in range(i):
if a[i] > a[j]:
max_value = max(max_value, dp[j])
dp[i] = max_value + 1
longIncSequence()
print(max(dp))
LIST
'알고리즘 > 백준' 카테고리의 다른 글
[백준] 9251번(python 파이썬) (0) | 2021.02.26 |
---|---|
[백준] 2565번(python 파이썬) (0) | 2021.02.25 |
[백준] 11054번(python 파이썬) (0) | 2021.02.09 |
[백준] 11055번(python 파이썬) (0) | 2021.02.09 |
[백준] 2156번(python 파이썬) (0) | 2021.02.09 |