본문 바로가기

Programmers/Level3

최고의 집합

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
import java.util.*;
class Solution {
    public int[] solution(int n, int s) {
        int[] answer = new int[n];
        int i = 0;
        // 최고의 집합이 존재하지 않는 경우
        if (n > s) {
            answer = new int[1];
            answer[0= -1;
        } else {
            answer = new int[n];
            // 집합 구하기
            while (n > 0) {
                int res = s / n;
                answer[i++= res;
                s -= res;
                n--;
            }
        }
        return answer;
    }
}
cs

직접 경우의 수를 구해보니 규칙을 찾을 수 있었다.

'Programmers > Level3' 카테고리의 다른 글

디스크 컨트롤러  (0) 2021.08.16
불량 사용자  (0) 2021.08.16
베스트앨범  (0) 2021.08.13
110 옮기기  (0) 2021.08.12
2 x n 타일링  (0) 2021.08.12