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
- DP
- 맵
- 정렬
- BFS
- boj
- 해시 테이블
- DFS
- 13164
- 투 포인터
- 세그먼트 트리
- 에라토스테네스의 체
- 정수론
- 트리
- 모던 JavaScript 튜토리얼
- 브루트포스
- 슬라이딩 윈도우
- 문자열
- 싸피
- 이분 탐색
- 그리디
- 수학
- 그래프
- 2357
- SSAFY
- JavaScript
- Python
- 플로이드-워셜
- 구현
- 애드 혹
- 누적 합
Archives
- Today
- Total
흙금이네 블로그
[BOJ] 13711 - LCS 4 (Python) 본문
아이디어
수열 A를 기준으로 수열 B의 인덱스를 정렬한 후 인덱스의 최장 증가 수열의 길이를 구한다.
풀이
def solution():
N = int(input())
A = tuple(map(int, input().split()))
B = tuple(map(int, input().split()))
idx_list_B = [0]*N
for i in range(N):
idx_list_B[B[i]-1] = i
idx_list = [0]*N
for i in range(N):
idx_list[i] = idx_list_B[A[i]-1]
LIS = [idx_list[0]]
res = 1
for i in range(1, N):
if idx_list[i] > LIS[-1]:
LIS.append(idx_list[i])
idx_list[i] = res
res += 1
else:
s = 0
e = res-1
while s <= e:
m = (s+e)//2
if LIS[m] > idx_list[i]:
e = m-1
elif LIS[m] < idx_list[i]:
s = m+1
LIS[s] = idx_list[i]
idx_list[i] = s
print(res)
solution()
'알고리즘' 카테고리의 다른 글
[BOJ] 17837 - 새로운 게임 2 (Python) (0) | 2023.03.27 |
---|---|
[BOJ] 17825 - 주사위 윷놀이 (Python) (0) | 2023.03.26 |
[BOJ] 23288 - 주사위 굴리기 2 (Python) (0) | 2023.03.25 |
[BOJ] 1817 - 짐 챙기는 숌 (Python) (0) | 2023.03.24 |
[BOJ] 5430 - AC (Python) (0) | 2023.03.24 |
Comments