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
- 2294
- RVO
- Unreal Engine5
- const
- UnrealEngine4
- GeeksForGeeks
- Programmers
- 프로그래머스
- DeferredRendering
- IFileDialog
- UE5
- RootMotion
- 줄 세우기
- C
- directx
- Frustum
- baekjoon
- 오블완
- softeer
- 백준
- algorithm
- 티스토리챌린지
- UnrealEngine5
- 팰린드롬 만들기
- winapi
- C++
- DirectX11
- 언리얼엔진5
- 1563
- NRVO
Archives
- Today
- Total
Game Develop
[Algorithm]Baekjoon 14003 :: 가장 긴 증가하는 부분수열 5 본문
https://www.acmicpc.net/problem/14003
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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
|
using namespace std;
int n;
int arr[1000001] = { 0 };
vector<int> lis;
vector<int> indices;
int main()
{
ios::sync_with_stdio(false);
cin.tie(0);
cout.tie(0);
cin >> n;
for (int i = 0; i < n; ++i)
{
cin >> arr[i];
}
lis.push_back(arr[0]);
indices.push_back(0);
for (int i = 1; i < n; ++i)
{
int index = lower_bound(lis.begin(), lis.end(), arr[i]) - lis.begin();
if (index == lis.size()) // 오름차순 형성되면
{
lis.push_back(arr[i]);
}
else // 형성안되면
{
lis[index] = arr[i];
}
indices.push_back(index);
}
cout << lis.size() << endl;
vector<int> answer;
int index = lis.size() - 1;
for (int i = n - 1; i >= 0; --i)
{
if (indices[i] == index)
{
answer.push_back(arr[i]);
--index;
}
}
for (int i = answer.size() - 1; i >= 0; --i)
{
printf("%d ", answer[i]);
}
}
|
cs |
동일한 유형을 최근에 풀었었다.
그래서 그때 내가 제대로 이해하고 기억하고있는지 검증하기 위해 풀었는데, 다행히 그때 잘 숙지했었나보다.
lis의 크기뿐만 아니라 원소까지 전부 구해야하는 문제이기 때문에, lis에 업데이트했던 원소들의 인덱스를 전부 따로 저장하고있어야 한다.
크기만 구하는 문제면 41번째라인에서 끝난다.
'Algorithm > Baekjoon' 카테고리의 다른 글
[Algorithm]Baekjoon 16566 :: 카드 게임 (0) | 2024.02.26 |
---|---|
[Algorithm]Baekjoon 14939 :: 불 끄기 (1) | 2024.02.26 |
[Algorithm]Baekjoon 10775 :: 공항 (1) | 2024.02.24 |
[Algorithm]Baekjoon 4386 :: 별자리 만들기 (0) | 2024.02.22 |
[Algorithm]Baekjoon 2887 :: 행성 터널 (0) | 2024.02.22 |