Notice
Recent Posts
Recent Comments
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
Tags
- UML관련
- UELOG
- 스마트포인터
- 강참조
- 약참조
- 람다
- enumasByue
- 데이터애셋
- 프로그래머스
- stl
- 선택정렬
- C++최적화
- 자료구조
- 언리얼엔진구조체
- 언리얼가비지컬렉터
- 정렬알고리즘
- 알고리즘
- C++
- unorder_map
- map
- 크리티컬섹션
- 델리게이트
- UE4 커스텀로그
- dataasset
- 애셋로드
- UE_LOG
- BFS
- moreeffectiveC++
- 정렬
- 람다사용정렬
Archives
- Today
- Total
기억을 위한 기록들
[프로그래머스 Lv 3] 이중우선순위 큐 C++ 본문
https://school.programmers.co.kr/learn/courses/30/lessons/42628
stringstream을 통해 데이터 추출 후, deque를 이용해서 조건에 맞는 제일 큰 값, 제일 작은 값 pop 하여 진행했다. 흠... 통과되긴 했지만, 데이터 넣을 때마다 sort 하는 건 마음에 들지 않는다.
#include <string>
#include <vector>
#include <queue>
#include <sstream>
#include <algorithm>
using namespace std;
vector<int> solution(vector<string> operations) {
deque<int> dq;
char c;
int n;
for (int i = 0; i < operations.size(); i++)
{
stringstream ss(operations[i]);
ss >> c;
ss >> n;
if (c == 'D')
{
if (!dq.empty())
{
if (n == 1)
{
dq.pop_front(); // 최댓값 삭제
} else if (n == -1)
{
dq.pop_back(); // 최솟값 삭제
}
}
} else if (c == 'I')
{
dq.push_back(n); // 삽입
sort(dq.begin(), dq.end(),greater<int>()); // 정렬
}
}
vector<int> answer(2, 0);
if (!dq.empty()) {
answer[0] = dq.front(); // 최솟값
answer[1] = dq.back(); // 최댓값
}
return answer;
}
효율검사는 하지 않지만, std::lower_bound 함수를 이용해서 sort 대신 대체 해보았다.
결과적으로 봤을때 std::sort 함수는 퀵정렬을 기반으로 해서 평균 O(nlogn)의 탐색시간을 갖고, std::lower_bound는 이진탐색을 이용하고 있어서 평균 O(logn)을 갖는다고 한다. 결과적으로 조금 나아졌다.
#include <string>
#include <vector>
#include <queue>
#include <sstream>
#include <algorithm>
#include <iostream>
using namespace std;
vector<int> solution(vector<string> operations) {
deque<int> dq;
char c;
int n;
for (int i = 0; i < operations.size(); i++)
{
stringstream ss(operations[i]);
ss >> c;
ss >> n;
if (c == 'D')
{
if (!dq.empty())
{
if (n == 1)
{
dq.pop_back(); // 최댓값 삭제
} else if (n == -1)
{
dq.pop_front(); // 최소값 삭제
}
}
} else if (c == 'I')
{
auto it = lower_bound(dq.begin(), dq.end(), n); // 삽입 위치를 찾음
dq.insert(it, n); // 삽입
}
}
vector<int> answer(2, 0);
if (!dq.empty()) {
answer[1] = dq.front(); // 최솟값
answer[0] = dq.back(); // 최댓값
}
return answer;
}
'Coding Test - cpp' 카테고리의 다른 글
[프로그래머스 Lv 1] [PCCE 기출문제] 1번/ 이웃한 칸 (0) | 2024.04.14 |
---|---|
[프로그래머스 lv 2 ] - 다음 큰 숫자 (0) | 2021.03.29 |
[프로그래머스 lv 2 ] - N개의 최소공배수 (0) | 2021.03.29 |
[백준 1260 : DFS와 BFS] - C++ (0) | 2021.01.11 |
[프로그래머스 Lv2/C++] 주식가격 (0) | 2020.12.31 |