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
- 데이터애셋
- UE4 커스텀로그
- moreeffectiveC++
- 프로그래머스
- 델리게이트
- 알고리즘
- BFS
- C++최적화
- 람다
- C++
- map
- unorder_map
- UELOG
- 언리얼엔진구조체
- 언리얼가비지컬렉터
- 선택정렬
- enumasByue
- 정렬
- 스마트포인터
- 애셋로드
- 자료구조
- UML관련
- stl
- 정렬알고리즘
- dataasset
- 강참조
- 약참조
- UE_LOG
- 람다사용정렬
- 크리티컬섹션
Archives
- Today
- Total
기억을 위한 기록들
[프로그래머스 lv 1 ] - K번째수 본문
programmers.co.kr/learn/courses/30/lessons/42748
#include <string>
#include <vector>
#include <algorithm>
using namespace std;
vector<int> solution(vector<int> array, vector<vector<int>> commands) {
vector<int> answer;
for (int i = 0; i < commands.size(); i++)
{
vector<int> temp;
int start = commands[i][0] - 1; //start번째부터
int end = commands[i][1] - 1; //end번째수 자릿수 지정
for (int j = start; j <= end; j++)
{
temp.push_back(array[j]); //저장
}
sort(temp.begin(), temp.end()); //오름차순 정렬
int n = commands[i][2] - 1; //n번째수 저장
answer.push_back(temp[n]);
}
return answer;
}
'Coding Test - cpp > Sort' 카테고리의 다른 글
[HackerRank/C++] Big Sorting (0) | 2021.07.01 |
---|---|
[프로그래머스 lv 2 ] - 가장 큰 수 (0) | 2021.04.21 |
[백준 10867: 중복 빼고 정렬하기] - C++ (0) | 2021.03.24 |
[백준 2108: 통계학] - C++ (0) | 2021.03.15 |
[백준 11650: 좌표 정렬하기] - C++ (0) | 2021.03.04 |