프로그래머스 c++ k번째수
K번째수
결과
문제 풀이
#include <vector>
#include <algorithm>
using namespace std;
vector<int> solution(vector<int> array, vector<vector<int>> commands) {
vector<int> res;
for(int i=0;i<commands.size();i++)
{
vector<int> answer;
for(int j=commands[i][0];j<=commands[i][1];j++)
answer.push_back(array[j-1]);
sort(answer.begin(),answer.end());
res.push_back(answer[commands[i][2]-1]);
}
return res;
}
i번째부터 j번째까지 자르고 answer 에 넣은뒤 정렬하고 , k번째의 수를 res에 담은뒤 반환했다.
Author And Source
이 문제에 관하여(프로그래머스 c++ k번째수), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다 https://velog.io/@jaranda/프로그래머스-c-k번째수저자 귀속: 원작자 정보가 원작자 URL에 포함되어 있으며 저작권은 원작자 소유입니다.
우수한 개발자 콘텐츠 발견에 전념 (Collection and Share based on the CC Protocol.)