https://school.programmers.co.kr/learn/courses/30/lessons/12911
이 문제는 2진수로 변환할때 1의 개수를 찾으면 해결할 수 있다.
처음 n값이 주어졌을 때의 값을 2진수로 변환하며 1의 개수를 찾는다.
그 후 n값을 1씩 증가시키며 2진수로 변환했을 때 1의 개수가 값은 값을 찾는다.
그러면 이 값이 가장 작은 1의 개수가 같은 값이 된다.
#include <string>
#include <vector>
#include <algorithm>
using namespace std;
int calc(int n){
int cnt=0;
while(n!=0){
if(n%2==1) cnt++;
n/=2;
}
return cnt;
}
int solution(int n) {
int answer = 0;
int temp = calc(n);
n++;
while(calc(n)!=temp){
n++;
}
answer = n;
return answer;
}
'Programmers Review' 카테고리의 다른 글
[Lv 2] 숫자의 표현 (0) | 2024.06.23 |
---|---|
[Lv 2] 올바른 괄호 (0) | 2024.06.22 |
[Lv 2] 카카오프렌즈 컬러링북 (0) | 2024.06.16 |
[Lv 2] 2xn 타일링 (0) | 2024.06.16 |
[Lv 2] 124 나라의 숫자 (0) | 2024.06.16 |