Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
Tags
- 알고리즘
- Greedy
- spring
- Spring Boot
- 백준
- JDBC
- Android
- Servlet
- 김영한
- Exception
- springdatajpa
- AOP
- transaction
- 자바
- pointcut
- Thymeleaf
- 그리디
- 인프런
- JPQL
- Proxy
- SpringBoot
- http
- jpa
- 스프링 핵심 기능
- QueryDSL
- java
- 스프링
- db
- kotlin
- 스프링 핵심 원리
Archives
- Today
- Total
개발자되기 프로젝트
[프로그래머스] K번째 수 본문
1. 문제
문제 설명
배열 array의 i번째 숫자부터 j번째 숫자까지 자르고 정렬했을 때, k번째에 있는 수를 구하려 합니다.
예를 들어 array가 [1, 5, 2, 6, 3, 7, 4], i = 2, j = 5, k = 3이라면
- array의 2번째부터 5번째까지 자르면 [5, 2, 6, 3]입니다.
- 1에서 나온 배열을 정렬하면 [2, 3, 5, 6]입니다.
- 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
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
'코테준비' 카테고리의 다른 글
[프로그래머스] 신규 아이디 추천 (0) | 2021.12.04 |
---|---|
[프로그래머스] 로또의 최고 순위와 최저 순위 (0) | 2021.12.03 |
[프로그래머스] 디스크 컨트롤러 (0) | 2021.12.02 |
[프로그래머스] 더 맵게!! (0) | 2021.11.29 |
[프로그래머스] 주식가격 (0) | 2021.11.29 |
Comments