본문 바로가기
개발/Coding Test

[프로그래머스 C++ Lv1] K번째수

by Eunduck 2022. 6. 6.
728x90

안녕하십니까. Eun🦆입니다.

풀이법 입니다.

 

 

코딩테스트 연습 - K번째수

[1, 5, 2, 6, 3, 7, 4] [[2, 5, 3], [4, 4, 1], [1, 7, 3]] [5, 6, 3]

programmers.co.kr

#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;
}

 

네이버 블로그 리뉴얼입니다.

(https://blog.naver.com/unsuk1/221913930484)

728x90

댓글