-
k번째 정수프로그래머스알고리즘 2021. 3. 12. 00:35
#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> test; for (int j = commands[i][0] - 1; j < commands[i][1]; j++) test.push_back(array[j]); sort(test.begin(), test.end()); answer.push_back(test[commands[i][2] - 1]); } return answer; }
'프로그래머스알고리즘' 카테고리의 다른 글
크레인 인형뽑기 게임 (0) 2021.03.17 완전탐색 모의고사 (0) 2021.03.16 가장 큰수(정렬) (0) 2021.03.10 체육복 그리디 (0) 2021.03.10 완주하지 못한 선수 unordered_map (0) 2021.03.10