반응형
#include <string>
#include <vector>
#include <iostream>
#include <algorithm>
using namespace std;
vector<int> solution(vector<int> array, vector<vector<int>> commands) {
vector<int> answer;
vector<int>temp;
int start,end,num;
for(int i=0;i<commands.size();i++)
{
for(int k=0;k<temp.size();k++)
temp.clear();
start = commands[i][0];
end = commands[i][1];
num = commands[i][2];
for(int j=start-1;j<end;j++)
temp.push_back(array[j]);
sort(temp.begin(),temp.end());
answer.push_back(temp[num-1]);
}
return answer;
}
반응형
'Programming > Programmers' 카테고리의 다른 글
프로그래머스 수식최대화 [c++] 2020카카오인턴십 (0) | 2022.03.15 |
---|---|
프로그래머스 키패드누르기 [c++] 2020 카카오 인턴십 (0) | 2022.03.14 |
프로그래머스 입국심사 [c++] (0) | 2022.03.02 |
프로그래머스 가장먼노드 [c++] (0) | 2022.03.02 |
프로그래머스 네트워크 [c++] (0) | 2022.02.26 |