티스토리 뷰
https://programmers.co.kr/learn/courses/30/lessons/12985
[프로그래머스][C++] 예상 대진표
승리하면서 새로 배정받는 번호 규칙을 찾으면 된다.
숫자 a와 b의 배정 번호가 1로 같으면 토너먼트 종료.
#include <iostream>
using namespace std;
int solution(int n, int a, int b) {
int answer = 0;
while (a != b) {
a = (a + 1) / 2;
b = (b + 1) / 2;
answer++;
}
return answer;
}
'Problem Solving' 카테고리의 다른 글
[프로그래머스][C++] 게임 맵 최단거리 (0) | 2022.06.04 |
---|---|
[프로그래머스][C++] 영어 끝말잇기 (0) | 2022.06.03 |
[백준][C++] 15655 N과 M (6) (0) | 2022.05.27 |
[백준][C++] 15654 N과 M (5) (0) | 2022.05.27 |
[프로그래머스][C++] 소수 찾기 (0) | 2022.05.26 |
댓글