Notice
Recent Posts
Recent Comments
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 | 28 |
29 | 30 | 31 |
Tags
- 언리얼엔진구조체
- 애셋로드
- 약참조
- UML관련
- dataasset
- 데이터애셋
- 정렬
- 언리얼가비지컬렉터
- map
- UE4 커스텀로그
- 정렬알고리즘
- 람다
- enumasByue
- UELOG
- 스마트포인터
- 람다사용정렬
- 프로그래머스
- 알고리즘
- C++
- 강참조
- 델리게이트
- unorder_map
- stl
- BFS
- 선택정렬
- 크리티컬섹션
- C++최적화
- 자료구조
- moreeffectiveC++
- UE_LOG
Archives
- Today
- Total
기억을 위한 기록들
[프로그래머스 lv 2 ] - 다음 큰 숫자 본문
programmers.co.kr/learn/courses/30/lessons/12911
#include <string>
#include <vector>
#include <bitset>
using namespace std;
int GetCountOne(int num)
{
string num1 = bitset<8>(num).to_string();
int nCnt = 0;
for (int i = 0; i<num1.size(); i++)
{
if (num1[i] == '1')
{
nCnt++;
}
}
return nCnt;
}
int solution(int n) {
int countNumber = GetCountOne(n);
while (n++)
{
if (countNumber == GetCountOne(n))
break;
}
return n;
}
참고 :
'Coding Test - cpp' 카테고리의 다른 글
[프로그래머스 Lv 3] 이중우선순위 큐 C++ (0) | 2024.04.23 |
---|---|
[프로그래머스 Lv 1] [PCCE 기출문제] 1번/ 이웃한 칸 (0) | 2024.04.14 |
[프로그래머스 lv 2 ] - N개의 최소공배수 (0) | 2021.03.29 |
[백준 1260 : DFS와 BFS] - C++ (0) | 2021.01.11 |
[프로그래머스 Lv2/C++] 주식가격 (0) | 2020.12.31 |