문제 링크 : https://school.programmers.co.kr/learn/courses/30/lessons/42748
메모
- sort 문법
맞힌 코드
#include <bits/stdc++.h>
using namespace std;
vector<int> solution(vector<int> array, vector<vector<int>> commands) {
vector<int> answer;
for (int l=0; l<commands.size(); l++){
vector<int> v;
int i = commands[l][0];
int j = commands[l][1];
int k = commands[l][2];
for (int m=i-1; m<j; m++){
v.push_back(array[m]);
}
sort(v.begin(), v.end());
answer.push_back(v[k-1]);
}
return answer;
}
'Algorithm' 카테고리의 다른 글
[프로그래머스] 86491번 최소직사각형 C++ (0) | 2024.11.13 |
---|---|
[프로그래머스] 42747번 H-Index C++ (0) | 2024.11.13 |
[프로그래머스] 1844번 게임 맵 최단거리 C++ (0) | 2024.11.11 |
[백준/BOJ] 20125번 쿠키의 신체 측정 C++ (0) | 2024.11.07 |
[백준/BOJ] 9655번 돌 게임 C++ (0) | 2024.11.07 |