[백준/BOJ] 백준 2352번 : 반도체 설계
2021. 2. 8. 04:33ㆍ알고리즘 문제풀이
가장 긴 증가하는 부분 수열 O(n log n) 알고리즘을 이용하여 문제를 해결했다
코드
#include <iostream>
#include <algorithm>
#include <vector>
using namespace std;
int n;
vector<int> c_port;
vector<int> make_long;
vector<int>::iterator it;
//가장 긴 증가하는 부분 수열 O(n log n) 알고리즘을 이용하여 문제를 해결했다
int main()
{
cin.tie(NULL);
ios_base::sync_with_stdio(false);
cin >> n;
for (int i = 0; i < n; i++)
{
int input;
cin >> input;
c_port.push_back(input);
}
for (int i = 0; i < n; i++)
{
it = lower_bound(make_long.begin(), make_long.end(), c_port[i]);
if (it == make_long.end())
make_long.push_back(c_port[i]);
else
*it = c_port[i];
}
cout << make_long.size();
return 0;
}
'알고리즘 문제풀이' 카테고리의 다른 글
[백준/BOJ] 백준 12015번 : 가장 긴 증가하는 부분 수열 2 (0) | 2021.02.09 |
---|---|
[백준/BOJ] 백준 1365번 : 꼬인 전깃줄 (0) | 2021.02.08 |
[백준/BOJ] 백준 12738번 : 가장 긴 증가하는 부분 수열 3 (0) | 2021.02.08 |
[백준/BOJ] 백준 17143번 : 낚시왕 (0) | 2021.02.08 |
[백준/BOJ] 백준 6549번 : 히스토그램에서 가장 큰 직사각형 (0) | 2021.02.08 |