728x90
안녕하십니까. Eun🦆입니다.
풀이법 입니다.
#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++){
printf("commands.size() = %d\n", commands.size());
int x = commands[i][0];
int y = commands[i][1];
int z = commands[i][2];
printf("x=%d, y=%d, z=%d\n", x, y, z);
int a[y-x];
for(int j=0;j<y-x+1;j++)
{
a[j] = array[j+x-1];
printf("a[j] = %d\n", a[j]);
}
sort(a, a+y-x+1);
answer.push_back(a[z-1]);
printf("answer = %d\n", a[z-1]);
}
return answer;
}
네이버 블로그 리뉴얼입니다.
728x90
'개발 > Coding Test' 카테고리의 다른 글
[프로그래머스 C++ Lv1] 나누어 떨어지는 숫자 배열 (0) | 2022.06.06 |
---|---|
[프로그래머스 C++ Lv1] 같은 숫자는 싫어 (0) | 2022.06.06 |
[프로그래머스 C++ Lv1] 완주하지 못한 선수 (0) | 2022.06.06 |
[프로그래머스 C++ Lv1] 크레인 인형뽑기 게임 (0) | 2022.06.06 |
윈도우 Git 명령어 모음 (0) | 2022.05.30 |
댓글