[20250920] BOJ / G2 / 가장 긴 증가하는 부분 수열 3 / 이준희 #933
Merged
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
🧷 문제 링크
https://www.acmicpc.net/problem/12738
🧭 풀이 시간
60분
👀 체감 난이도
✏️ 문제 설명
-10억 부터 10억 사이의 수로 이루어진 최대 길이가 100만인 수열에서
가장 긴 증가하는 부분 수열의 길이를 구하는 문제입니다.
🔍 풀이 방법
이분탐색을 이용해서 풀었습니다.
부분수열을 구성하는 배열을 이용하고 원배열의 원소마다 이분탐색으로 위치할 수 있는 최소 인덱스를 구한 후
갱신해가면서 풀었습니다.
⏳ 회고
처음에는 날로 먹으려고 DP로 풀었는데 절대로 시간초과가 해결이 안되서 힌트를 얻어서 풀었습니다.
아는 문제 + 아는 개념이 있다보니 이 개념에서 벗어나지지가 않아서 1시간 동안 고민해도 풀리지가 않았습니다.