Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
Tags
- 언리얼 커스텀 플러그인
- 1253번
- Security
- SQL
- oracle
- 5639
- 백준
- 1967번
- command not found
- 의미와 무의미의 경계에서
- 실습
- 백준 1253번
- 언리얼 플러그인
- 오손데이터읽기
- 비재귀셰그먼트
- 트랜잭션 관리
- 1759번
- C++
- UActor
- hackerank
- UnrealMP
- FBX
- 2단계로킹
- 셰그먼트트리
- Unreal
- objtofbx
- Linux
- 데이터베이스 배움터
- OS
- 민겸수
Archives
- Today
- Total
fatalite
C++ / 예상대진표 본문
Problem
난이도 : 프로그래머스 2단계 68%
분류 : 비트 연산, 이진법
Ideal Solution
#include <iostream>
using namespace std;
int solution(int n, int a, int b)
{
int answer = 0;
while (a != b) {
a = (a + 1) >> 1; // 2 1 1
b = (b + 1) >> 1; // 4 2 1
++answer;
}
return answer;
}
My Solution
#include <iostream>
using namespace std;
int solution(int n, int a, int b)
{
int answer = 0;
if(a > b){
int tmp = a;
a = b;
b = tmp;
}
while(answer < n){
answer++;
if(a % 2 == 1 && a == b - 1) break;
int NextA = a / 2 + a % 2;
int NextB = b / 2 + b % 2;
a = NextA;
b = NextB;
}
return answer;
}
'코딩 인터뷰 > 프로그래머스' 카테고리의 다른 글
C++ / 폰켓몬 / 해시 (0) | 2023.05.11 |
---|---|
C++ / N개의 최소 공배수 구하기 (0) | 2023.05.10 |
C++ / 구명보트 (0) | 2023.05.08 |
C++ / 카펫 (0) | 2023.05.07 |
C++ / 영어 끝말잇기 (0) | 2023.05.07 |