티스토리 뷰
programmers.co.kr/learn/courses/30/lessons/42748
#include <algorithm>
#include <vector>
using namespace std;
vector<int> solution(vector<int> array, vector<vector<int>> commands) {
vector<int> tmp;
vector<int> answer;
int data;
for (int i = 0; i < commands.size(); i++) {
for (int j = commands[i][0] - 1; j <= commands[i][1] - 1; j++) {
tmp.push_back(array[j]);
}
sort(tmp.begin(), tmp.end());
data = commands[i][2] - 1;
answer.push_back(tmp[data]);
tmp.clear();
}
return answer;
}
'알고리즘 문제 풀이' 카테고리의 다른 글
[알고리즘문제] 릿코드 Number of Good Pairs (0) | 2021.04.04 |
---|---|
[알고리즘문제] 프로그래머스 큰수만들기 (0) | 2021.04.01 |
[알고리즘문제] 백준 BFS와 DFS (0) | 2021.03.18 |
[알고리즘문제] 프로그래머스 오픈채팅방 (0) | 2021.03.17 |
[알고리즘문제] 프로그래머스 더 맵게 (0) | 2021.03.16 |