Java

[Java] 03/28 알고리즘 문제

openDeveloper 2023. 3. 29. 06:19

https://school.programmers.co.kr/learn/courses/30/lessons/42748

 

프로그래머스

코드 중심의 개발자 채용. 스택 기반의 포지션 매칭. 프로그래머스의 개발자 맞춤형 프로필을 등록하고, 나와 기술 궁합이 잘 맞는 기업들을 매칭 받으세요.

programmers.co.kr

import java.util.*;
class Solution {
    public int[] solution(int[] array, int[][] commands) {
        int[] answer = new int[commands.length];
        int idx = 0;
        
        for(int[] command : commands){
            int[] com = new int[command[1]-command[0] + 1];
            for(int i=command[0];i<command[1] + 1;i++){
                com[i-command[0]] = array[i-1];
            }
            Arrays.sort(com);
            answer[idx++] = com[command[2]-1];
        }       
        
        
        return answer;
    }
}

풀이 접근법 : 

문제에 맞게 command 배열을 하나씩 꺼내어 정렬 후에 순서에 맞는 값을 Answer 배열에 넣은 후에 출력한다.

 

 

https://school.programmers.co.kr/learn/courses/30/lessons/68644

 

프로그래머스

코드 중심의 개발자 채용. 스택 기반의 포지션 매칭. 프로그래머스의 개발자 맞춤형 프로필을 등록하고, 나와 기술 궁합이 잘 맞는 기업들을 매칭 받으세요.

programmers.co.kr

import java.util.*;
class Solution {
    public int[] solution(int[] numbers) {
        int idx = 0;
        
        Set<Integer> set = new TreeSet<>();
        for(int i=0; i<numbers.length; i++){
            for(int j=i+1; j<numbers.length;j++){
               set.add(numbers[i] + numbers[j]);
            }         
        }
        int[] answer = new int[set.size()];
        Iterator<Integer> ite = set.iterator();
        while(ite.hasNext()) {
            answer[idx++] = ite.next();
		}
        
        return answer;
    }
}

풀이 접근법 : 이중 for문으로 원소들의 합을 Set(중복을 허용하지 않는) 자료구조에 넣은 후에 하나씩 출력한다. 특히 TreeSet은 오름차순 정렬도 포함하고 있어, Iterator에 넣은 후 순서대로 출력할 수 있다.