728x90
반응형
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에 담은뒤 반환했다.
728x90
반응형
'자라는 개발자 > 문제풀이' 카테고리의 다른 글
백준 c++ 2776 암기왕 (0) | 2022.03.27 |
---|---|
프로그래머스 c++ 가장 큰 수 (0) | 2022.03.23 |
백준 c++ 2212 센서 (0) | 2022.03.18 |
백준 c++ 1758 알바생 강호 (0) | 2022.03.17 |
백준 c++ 11497 통나무 건너뛰기 (0) | 2022.03.16 |