-
[프로그래머스/Level 2] 예상 대진표 (C++)알고리즘 문제풀이/프로그래머스 2021. 1. 3. 20:50
programmers.co.kr/learn/courses/30/lessons/12985
#include <iostream> using namespace std; int solution(int n, int a, int b) { int answer = 0; while(1) { if(a == b) return answer; a = (a + 1) / 2; b = (b + 1) / 2; answer++; } }
'알고리즘 문제풀이 > 프로그래머스' 카테고리의 다른 글
[프로그래머스/Level 2] 단체사진 찍기 (C++) (0) 2021.01.15 [프로그래머스/Level 2] 이진 변환 반복하기 (C++) (0) 2021.01.13 [프로그래머스/Level 2] 삼각 달팽이 (C++) (0) 2020.12.29 [프로그래머스/Level 3] 단어 변환 (C++) (0) 2020.11.24 [프로그래머스/Level 2] 조이스틱 (C++) (0) 2020.11.17