DHistory
[Baekjoon] DP - 11722 가장 긴 감소하는 부분 수열 본문
문제
풀이
import sys
n = int(sys.stdin.readline().rstrip())
numbers = [0] + list(map(int, sys.stdin.readline().rstrip().split()))
def solution(a):
d = [1] * len(a)
for i in range(1, n + 1):
for j in range(1, i):
if a[i] < a[j] and d[i] < d[j] + 1:
d[i] = d[j] + 1
return max(d)
print(solution(numbers))
채점 결과
'Computer Science > Algorithm' 카테고리의 다른 글
[Baekjoon] DP - 15990 1, 2, 3 더하기 5 (0) | 2023.09.25 |
---|---|
[Baekjoon] DP - 15988 1, 2, 3 더하기 3 (0) | 2023.09.25 |
[Baekjoon] DP - 1699 제곱수의 합 (0) | 2023.09.25 |
[Baekjoon] DP - 11051 이항 계수 2 (0) | 2023.09.25 |
[Baekjoon] DP - 11055 가장 큰 증가하는 부분 수열 (0) | 2023.09.25 |