-
정렬 > K번째수프로그래머스(Programmers) 2018. 9. 20. 16:58반응형
https://programmers.co.kr/learn/courses/30/lessons/42748
1. 문제
배열 array의 i번째 숫자부터 j번째 숫자까지 자르고 정렬했을 때, k번째에 있는 수를 구하려 합니다.
예를 들어 array가 [1, 5, 2, 6, 3, 7, 4], i = 2, j = 5, k = 3이라면
array의 2번째부터 5번째까지 자르면 [5, 2, 6, 3]입니다.
1에서 나온 배열을 정렬하면 [2, 3, 5, 6]입니다.
2에서 나온 배열의 3번째 숫자는 5입니다.
배열 array, [i, j, k]를 원소로 가진 2차원 배열 commands가 매개변수로 주어질 때, commands의 모든 원소에 대해 앞서 설명한 연산을 적용했을 때 나온 결과를 배열에 담아 return 하도록 solution 함수를 작성해주세요.
- Dis - 2018-09-29
해당 문제는 시간 제한이 있으면 아래 코드로 풀리지 않는다. 세그먼트 트리를 이용해서 구현 해야 한다.
2. 알고리즘
키워드 - 구현, 정렬
3. 코드
1234567891011121314151617181920212223242526272829#include <string>#include <vector>#include <algorithm>using namespace std;vector<int> solution(vector<int> array, vector<vector<int>> commands) {vector<int> answer;//sort(array.begin(), array.end());const int size = commands.size();for(int i=0; i<size; i++) {int cand[3];for(int j=0; j<commands[i].size();j++) {cand[j] = commands[i][j];}vector<int> arr;for(int k=cand[0]-1; k<cand[1]; k++) {arr.push_back(array[k]);}sort(arr.begin(), arr.end());answer.push_back(arr[cand[2]-1]);}return answer;}cs 반응형'프로그래머스(Programmers)' 카테고리의 다른 글
스택/큐 > 탑 (0) 2018.09.26 정렬 > 가장 큰 수 (0) 2018.09.20 2017 팁스타운 > 예상 대진표 (0) 2018.09.20 프로그래머스 > Level 1 > 같은 숫자는 싫어 (0) 2018.09.14 Level 2 > 다음 큰 숫자 (0) 2018.09.14