Notice
Recent Posts
Recent Comments
Link
«   2025/01   »
1 2 3 4
5 6 7 8 9 10 11
12 13 14 15 16 17 18
19 20 21 22 23 24 25
26 27 28 29 30 31
Archives
Today
Total
관리 메뉴

개발자되기 프로젝트

[프로그래머스] K번째 수 본문

코테준비

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

Seung__ 2021. 12. 3. 20:55

1. 문제


문제 설명

배열 array의 i번째 숫자부터 j번째 숫자까지 자르고 정렬했을 때, k번째에 있는 수를 구하려 합니다.

예를 들어 array가 [1, 5, 2, 6, 3, 7, 4], i = 2, j = 5, k = 3이라면

  1. array의 2번째부터 5번째까지 자르면 [5, 2, 6, 3]입니다.
  2. 1에서 나온 배열을 정렬하면 [2, 3, 5, 6]입니다.
  3. 2에서 나온 배열의 3번째 숫자는 5입니다.

배열 array, [i, j, k]를 원소로 가진 2차원 배열 commands가 매개변수로 주어질 때, commands의 모든 원소에 대해 앞서 설명한 연산을 적용했을 때 나온 결과를 배열에 담아 return 하도록 solution 함수를 작성해주세요.

제한사항
  • array의 길이는 1 이상 100 이하입니다.
  • array의 각 원소는 1 이상 100 이하입니다.
  • commands의 길이는 1 이상 50 이하입니다.
  • commands의 각 원소는 길이가 3입니다.
입출력예
     
array commands return
[1, 5, 2, 6, 3, 7, 4] [[2, 5, 3], [4, 4, 1], [1, 7, 3]] [5, 6, 3]
입출력 예 설명

[1, 5, 2, 6, 3, 7, 4]를 2번째부터 5번째까지 자른 후 정렬합니다. [2, 3, 5, 6]의 세 번째 숫자는 5입니다.
[1, 5, 2, 6, 3, 7, 4]를 4번째부터 4번째까지 자른 후 정렬합니다. [6]의 첫 번째 숫자는 6입니다.
[1, 5, 2, 6, 3, 7, 4]를 1번째부터 7번째까지 자릅니다. [1, 2, 3, 4, 5, 6, 7]의 세 번째 숫자는 3입니다.

 

 

2. 아이디어


  • 각 command를 {i, j, k}라고 할 경우.
  • i번째(index = i-1) 부터 j번째(index = j-1) 까지 잘라내기
  • 잘라낸 배열 정렬하기 -> Comparator 사용
  • 잘라낸 배열에서 k번째(index = k-1) 값 가져오기
  • command의 개수만큼 반복.

 

3. 코드


import java.util.ArrayList;
import java.util.Arrays;
import java.util.Comparator;


class Solution {
        public int[] solution(int[] array, int[][] commands) {
        int[] answer = new int[commands.length];
        ArrayList<Integer> temp = new ArrayList<>();

        int j=0;
        for (int[] command : commands) {
            for (int i=command[0] -1; i <command[1]; i++ ){
                temp.add(array[i]);
            }
            temp.sort(new Comparator<Integer>() {
                @Override
                public int compare(Integer o1, Integer o2) {
                    return o1-o2;
                }
            });

            answer[j] = temp.get(command[2]-1);
            j++;
            temp.clear();
        }

        return answer;
    }
}

 

 

4. sort()구현 : bubble sort


 

거품 정렬 - 위키백과, 우리 모두의 백과사전

무작위 배열수의 거품 정렬 예 거품 정렬 또는 버블 정렬( - 整列, 영어: bubble sort, sinking sort)은 두 인접한 원소를 검사하여 정렬하는 방법이다. 시간 복잡도가 O ( n 2 ) {\displaystyle O(n^{2})} 로 상당

ko.wikipedia.org

public int[] solution(int[] array, int[][] commands) {
    int[] answer = new int[commands.length];
    //ArrayList<Integer> temp = new ArrayList<>();
    int[] temp;

    int j=0;
    for (int[] command : commands) {
        temp = new int[command[1]-command[0]+1];
        int k=0;
        for (int i=command[0] -1; i <command[1]; i++ ){
            temp[k] = array[i];
            k++;
        }

        //Arrays.sort(temp);
        temp = sort(temp);
        answer[j] = temp[command[2]-1];
        j++;

    }

    return answer;
}

int[] sort(int[] array){
    int temp = 0;
    int size = array.length -1;

   //배열 마지막부터 어디까지?
    for (int i=size; i>0; i--){
        //앞에서부터 차례대로 비교
        for (int j=0; j < i; j++){
            if (array[j] > array[j+1]){
                temp = array[j+1];
                array[j+1] = array[j];
                array[j] = temp;
            }
        }
    }

   return array;
}
  • Bubble Sort
    • 앞에서부터 원소를 2개씩 비교하여 큰 원소를 뒤쪽으로 보냄.
    • 한마디로 가장 큰 원소부터 시작하여 배열 마지막부터 채워짐. 

 

5. GitHub : 211203 Kth Number_bubble sort


 

 

Comments