250x250
반응형
Notice
Recent Posts
Recent Comments
Link
N
(프로그래머스 c++)2개 이하로 다른 비트 본문
728x90
반응형
https://programmers.co.kr/learn/courses/30/lessons/77885?language=cpp
https://ansohxxn.github.io/programmers/148/
비트 관련 문제는 아직 어려움이 있는 것 같다...ㅠ
다른 분의 사이트에서 참고하였고, 다시 공부해서 풀어봐야겠다.
#include <string>
#include <vector>
#include <iostream>
using namespace std;
vector<long long> solution(vector<long long> numbers) {
vector<long long> answer;
for(int i = 0; i < numbers.size(); i++){
if(numbers[i] % 2 == 0){
answer.push_back(numbers[i] + 1);
}
else{
long long bit = 1;
while(1){
if((numbers[i] & bit) == 0){
break;
}
bit <<= 1;
}
bit /= 2;
answer.push_back(numbers[i] + bit);
}
}
return answer;
}
728x90
반응형
'프로그래머스 알고리즘 > 2단계' 카테고리의 다른 글
(프로그래머스 JS)행렬의 곱셈 (0) | 2021.06.10 |
---|---|
(프로그래머스 C++)가장 큰 수 (0) | 2021.06.01 |
(프로그래머스 JS)게임 맵 최단거리 (0) | 2021.05.12 |
(프로그래머스 JS)괄호 회전하기 (0) | 2021.05.12 |
(프로그래머스 c++)괄호 회전하기 (0) | 2021.05.12 |