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
- softeer
- DeferredRendering
- RVO
- 티스토리챌린지
- const
- GeeksForGeeks
- 줄 세우기
- DirectX11
- baekjoon
- 프로그래머스
- 언리얼엔진5
- UnrealEngine5
- 백준
- UE5
- 1563
- IFileDialog
- UnrealEngine4
- 2294
- NRVO
- Frustum
- directx
- Programmers
- RootMotion
- C++
- C
- Unreal Engine5
- 팰린드롬 만들기
- algorithm
- winapi
- 오블완
Archives
- Today
- Total
Game Develop
[Algorithm]Baekjoon 2352번 :: 반도체 설계 본문
https://www.acmicpc.net/problem/2352
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
59
|
#include <iostream>
#include <string>
#include <map>
#include <vector>
#include <algorithm>
#include <math.h>
#include <queue>
#include <functional>
#include <sstream>
#include <memory.h>
#include <deque>
#include <set>
#include <unordered_set>
#include <thread>
#include <atomic>
using namespace std;
int n;
int main()
{
ios::sync_with_stdio(false);
cin.tie(NULL);
cout.tie(NULL);
cin >> n;
vector<int> lis;
for (int i = 0; i < n; ++i)
{
int num;
cin >> num;
if (lis.size() == 0)
{
lis.push_back(num);
continue;
}
int lowerIndex = lower_bound(lis.begin(), lis.end(), num) - lis.begin();
if (lowerIndex == lis.size())
{
lis.push_back(num);
}
else
{
lis[lowerIndex] = num;
}
}
cout << lis.size();
}
|
cs |
골드2인데 정답률이 높은 이유는.. 비슷한 유형의 문제들이 꽤 있기때문이라 생각한다.
이문제에선 반도체인데 다른문제에선 전봇대였나?? 로 바뀌어서 비슷한 문제가 있었어서 바로 풀었다.
결국 최대 오름차순길이를 구하는 문제로, 교차하지않기위해서는 이전에 선택했던것보다 높은것을 선택해야하기 때문이다.
'Algorithm > Baekjoon' 카테고리의 다른 글
[Algorithm]Baekjoon 1507번 :: 궁금한 민호 (0) | 2025.01.25 |
---|---|
[Algorithm]Baekjoon 6236번 :: 용돈 관리 (0) | 2025.01.25 |
[Algorithm]Baekjoon 3020번 :: 개똥벌레 (0) | 2025.01.23 |
[Algorithm]Baekjoon 1939번 :: 중량제한 (0) | 2025.01.23 |
[Algorithm]Baekjoon 16562번 :: 친구비 (0) | 2025.01.21 |