728x90
반응형
잘라서 넣는 방법만 알면 쉽게 풀 수 있었다.
#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> copy;
copy.assign(array.begin() + commands[i][0] - 1, array.begin() + commands[i][1]);
sort(copy.begin(), copy.end());
answer.push_back(copy[commands[i][2] - 1]);
}
return answer;
}
728x90
반응형
'코딩 테스트 > 프로그래머스' 카테고리의 다른 글
[Level 1, C++] 3진법 뒤집기 (0) | 2022.07.03 |
---|---|
[Level 1, C++] 약수의 개수와 덧셈 (0) | 2022.07.03 |
[Level 1, C++] 소수 만들기 (0) | 2022.07.03 |
[Level 1] 없는 숫자 더하기 (0) | 2022.07.03 |
[Level 1] 신규 아이디 추천 (0) | 2022.07.03 |