Programmers / 다음 큰 숫자

Programmers / 다음 큰 숫자

Problem

Solution 1

 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
class Solution {
    public int solution(int n) {
        // Get n's one count
        int nBinOneCount = getOneCount(n);
        
        // Find n's next
        for (int i = n + 1; i <= 1000000; i++) {
            if (nBinOneCount == getOneCount(i)) {
                return i;
            }
        }
        
        // Not found
        return 0;
    }
    
    private int getOneCount(int n) {
        String nBin = Integer.toBinaryString(n);
        int oneCount = 0;
        for (int i = 0; i < nBin.length(); i++) {
            if (nBin.charAt(i) == '1') {
                oneCount++;
            }
        }
        return oneCount;
    }
}
Solution 1
  • Description
    • n을 2진수로 변환한 후에 1의 개수를 구함
    • 하나씩 증가시키면서 1의 개수를 구하고, n의 개수와 동일한지 검사
  • Time Complexity
    • O(1)
    • n의 크기가 시간 복잡도에 영향을 주지 않음
  • Space Complexity
    • O(1)
    • 함수의 Paramater 및 지역 변수