Recent Posts
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
- JanusWebRTCGateway
- mp4fpsmod
- JanusWebRTCServer
- VARCHAR (1)
- pytest
- vfr video
- taint
- 티스토리챌린지
- PersistenceContext
- preemption #
- kotlin
- JanusWebRTC
- k8s #kubernetes #쿠버네티스
- 오블완
- 달인막창
- 코루틴 빌더
- 개성국밥
- JanusGateway
- 헥사고날아키텍처 #육각형아키텍처 #유스케이스
- PytestPluginManager
- tolerated
- Value too long for column
- 자원부족
- terminal
- 겨울 부산
- python
- 코루틴 컨텍스트
- Spring Batch
- table not found
- 깡돼후
Archives
너와 나의 스토리
(BOJ) 11722 가장 긴 감소하는 부분 수열 - O(NlogN) 구현 본문
반응형
문제: https://www.acmicpc.net/problem/11722
문제 풀이:
https://hororolol.tistory.com/103
ㄴ 거의 같은 문제
부등호 방향만 바꾸면 됨
소스코드:
풀이1 - 시간 복잡도: O($n^{2}$)
int n,arr[1001],dp[1001],res;
int main()
{
ios::sync_with_stdio(false);
cin.tie(NULL), cout.tie(NULL);
cin >> n;
for (int i = 0; i < n; i++) {
cin >> arr[i];
dp[i] = 1;
for (int j = 0; j < i; j++) {
if (arr[j] > arr[i]) {
dp[i] = max(dp[i], dp[j] + 1);
}
}
res = max(res, dp[i]);
}
cout << res << '\n';
return 0;
}
풀이2 - 시간 복잡도: O(NlogN)
#include <iostream>
#include <algorithm>
using namespace std;
int n, arr[1002], tmp[1002];
int func2(int val, int sz) {
int l = 0, r = sz;
while (l < r) {
int mid = (l + r) >> 1;
if (tmp[mid] <= val) r = mid;
else l = mid + 1;
}
return r;
}
int main() {
ios::sync_with_stdio(false);
cin.tie(NULL);
cout.tie(NULL);
cin >> n;
for (int i = 0; i < n; i++) {
cin >> arr[i];
}
int sz = 1;
tmp[0] = arr[0];
for (int i = 1; i < n; i++) {
int t = func2(arr[i],sz);
if (t == sz) sz++;
tmp[t] = arr[i];
}
cout << sz << '\n';
return 0;
}
반응형
'Algorithm > Dynamic Programming' 카테고리의 다른 글
(BOJ) 14697 방 배정하기 (0) | 2019.07.16 |
---|---|
(BOJ) 1890 점프 (0) | 2019.05.21 |
(BOJ) 11053 가장 긴 증가하는 부분수열 - O(NlogN)방법 / lower_bound 구현 (0) | 2019.05.21 |
(BOJ) 9251 LCS (0) | 2019.05.21 |
(BOJ)1463 1로 만들기 (0) | 2019.05.01 |
Comments