반응형
https://programmers.co.kr/learn/courses/30/lessons/42748
문제가 직관적이어서 어렵지 않게 풀었다.
알고리즘 문제가 모두 이 문제처럼 직관적이면 다 어렵지 않게 풀 수 있을텐데...
package question;
import java.util.Arrays;
public class KSortQuestion
{
public static void main(String [] args)
{
int [] array = {1, 5, 2, 6, 3, 7, 4};
int [][] commands =
{
{2, 5, 3},
{4, 4, 1},
{1, 7, 3}
};
int [] result = solution(array, commands);
for (int a = 0; a<result.length; a++)
{
System.out.println(result[a]);
}
System.out.println(result);
}
public static int [] solution(int [] array, int [][] commands)
{
int [] result = new int[commands.length];
for (int i = 0; i < commands.length; i++)
{
int first = commands[i][0]-1;
int end = commands[i][1]-1;
int select = commands[i][2]-1;
int [] temp = new int[end - first + 1];
int tmp = first;
for (int j = 0; j < temp.length; j++)
{
if(tmp <= end)
{
temp[j] = array[tmp];
tmp++;
}
}
Arrays.sort(temp);
result[i] = temp[select];
}
return result;
}
}
반응형
'CS > Algorithm' 카테고리의 다른 글
키패드 누르기 (0) | 2021.05.04 |
---|---|
신규 아이디 추천 (0) | 2021.05.03 |
완주하지 못한 선수 (0) | 2021.04.30 |
뉴스 클러스터링 (0) | 2021.04.29 |
크레인 인형뽑기 게임 (0) | 2021.04.29 |