Spicy Tuna Sushi
본문 바로가기
문제를 풀자

[프로그래머스] 다음 큰 숫자(C++)

by 말린malin 2022. 8. 17.

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

 

프로그래머스

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

programmers.co.kr

count 함수는 주어진 수를 2진수로 변환했을 때의 1의 개수를 반환한다.

주어진 n의 1의 개수를 저장해놓고,

n+1부터 계속 check해보며 같은 수가 나올 경우 빠져나오면 된다.

#include <string>
#include <vector>

using namespace std;
int count(int n)
{ //나머지 1일 떄마다 cnt++
    int cnt=0;
    while(n>0)
    {
        if(n%2==1)
            cnt++;
        n=n/2;
    }
    return cnt;
}
int solution(int n) {
    //주어진 n을 2진수로 변환했을 때의 1의 개수 저장
    int n_cnt=count(n);
    
    int answer=n;
    int answer_cnt=0;
    while(1)
    {
        answer++;
        answer_cnt=count(answer);
        if(answer_cnt==n_cnt)
            break;
        
    }
    return answer;
}

댓글