728x90
반응형
해당 조건을 해결하기 위해 2중 반복문과 슬라이싱을 적절하게 섞어서 사용하였다.
package programmers;
import java.util.Arrays;
public class KNumber {
public static void main(String[] args) {
Solution12 s = new Solution12();
int[] array = {1, 5, 2, 6, 3, 7, 4};
int[][] commands = {{2, 5, 3}, {4, 4, 1}, {1, 7, 3}};
s.solution(array, commands);
}
}
class Solution12 {
public int[] solution(int[] array, int[][] commands) {
// 예를 들어 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입니다.
int[] arr = new int[commands.length];
for(int i=0; i<commands.length; i++) {
int tmp = commands[i][1] - commands[i][0];
int[] new_array = new int[tmp+1];
for(int j = commands[i][0], k = 0; j<=commands[i][1]; j++) {
new_array[k++] = array[j-1];
}
Arrays.sort(new_array);
arr[i] = (new_array[commands[i][2]-1]);
}
return arr;
}
}
728x90
반응형
'알고리즘 풀이 > 프로그래머스' 카테고리의 다른 글
[프로그래머스] 음양 더하기 java 자바 (0) | 2022.05.03 |
---|---|
[프로그래머스] 내적 java 자바 (0) | 2022.05.03 |
[프로그래머스] 없는 숫자 더하기 java 자바 (0) | 2022.05.03 |
[프로그래머스] 숫자 문자열과 영단어 자바 java (0) | 2022.05.03 |
[프로그래머스] 로또의 최고 순위와 최저 순위 java 자바 (0) | 2022.05.02 |