Recent Posts
Notice
No Rules Rules
팝핀 소다 (feat. 백준, 27724번) 본문
728x90
반응형
팝핀 소다
https://www.acmicpc.net/problem/27724
// woohyeon.kim
// kim519620.tistory.com
#include <iostream>
using namespace std;
int main(){
ios::sync_with_stdio(false), cin.tie(NULL);
register int N, M, K, ans1 = 0, ans2 = 0;
cin >> N >> M >> K;
while(N > 1)
N >>= 1, ++ans1;
--K;
while(K > 0)
--K, K >>= 1, ++ans2;
if(ans2 + M > ans1)
cout << ans1;
else
cout << ans2 + M;
return 0;
}
// *&)*@*
반응형
N명의 인원이 대회에 참가했을 경우의 총 대결수와 시은이의 탄성 내성 K값 기준의 총 대결수 + 이변 횟수 를 비교하여 출력합니다.
728x90
반응형
'생활 > 코테' 카테고리의 다른 글
비밀번호 찾기 (feat. 백준, 17219번) (0) | 2023.03.14 |
---|---|
막대기 (feat. 백준, 17608번) (0) | 2023.03.14 |
분수 합 (feat. 백준, 1735번) (0) | 2023.03.14 |
찬반투표 (feat. 백준, 27736번) (0) | 2023.03.14 |
유럽여행 (feat. 백준, 1185번) (0) | 2023.03.10 |
Comments