다음 큰 숫자

·2024년 8월 30일
0

Algorithm Study

목록 보기
62/77
post-custom-banner

문제 설명

자연수 n이 주어졌을 때, n의 다음 큰 숫자는 다음과 같이 정의 합니다.

조건 1. n의 다음 큰 숫자는 n보다 큰 자연수 입니다.
조건 2. n의 다음 큰 숫자와 n은 2진수로 변환했을 때 1의 갯수가 같습니다.
조건 3. n의 다음 큰 숫자는 조건 1, 2를 만족하는 수 중 가장 작은 수 입니다.
예를 들어서 78(1001110)의 다음 큰 숫자는 83(1010011)입니다.

자연수 n이 매개변수로 주어질 때, n의 다음 큰 숫자를 return 하는 solution 함수를 완성해주세요.

제한 사항

n은 1,000,000 이하의 자연수 입니다.

풀이

#include <string>
#include <vector>
#include <algorithm>

using namespace std;

string binaryConvert(int n)
{
    string temp;
    while(n / 2 != 0)
    {
        temp = to_string(n % 2) + temp;
        n /= 2;
    }
    
    return to_string(n % 2) + temp;
}

int solution(int n) {
    string originstr = binaryConvert(n);
    int cnt = count(originstr.begin(), originstr.end(), '1');
    
    for(int i = n + 1; ; i++)
    {
        string newStr = binaryConvert(i);
        int newCnt = count(newStr.begin(), newStr.end(), '1');
        if(cnt == newCnt)
            return i;
    }
}
post-custom-banner

0개의 댓글