포럼
문제 COCI00146

Cokolada

설명

A new type of chocolate arrived in the local shop. The chocolate comes in bars, each bar consisting of \(N\) squares. Bars are factory made and only come in sizes which are full powers of two. In other words a single bar has \(1\), \(2\), \(4\), \(8\), \(16\), \(\ldots\) squares.

To fully assess the quality of chocolate Mirko must sample at least \(K\) squares. His friend Slavko would also like to try some of the chocolate. Since Mirko is in a hurry to try the chocolate himself, he decides to break the bar he bought in pieces, such that he has exactly \(K\) squares, and leaves the rest (if any) to Slavko. The bars are a bit brittle, so Mirko can break them only on their exact center. In other words, from one bar with \(D\) squares, he can get two bars with \(D/2\) squares.

Write a program that will determine the minimal number of breaks Mirko must perform in order to obtain exactly \(K\) squares (not necessarily in one piece). Also, determine the smallest bar size Mirko must buy in order to have at least \(K\) squares.

제약
입력 형식

The first and only line of input will contain one integer \(K\) (\(1 \le K \le 1\,000\,000\)), the number of squares Mirko must sample.

출력 형식

The first and only line of output should contain two integers, separated by a
single space. The first integer is the smallest bar size Mirko must buy. The
second the smallest number of breaks.
SAMPLE TEST CASES
Input:
6
Input:
7
Input:
5
Output:
8 2
Output:
8 3
Output:
8 3

서브태스크
서브태스크점수설명

Test 1

10점

None

Test 2

10점

None

Test 3

10점

None

Test 4

10점

None

Test 5

10점

None

Test 6

10점

None

Test 7

10점

None

Test 8

10점

None

Test 9

10점

None

Test 10

10점

None

예제 1
입력
6
출력
8 2
예제 2
입력
7
출력
8 3
예제 3
입력
5
출력
8 3
문제 정보

riseoj 작성

출처 COCI 2009/2010 Contest 7

평가 및 의견

Cokolada

개요
출제자 난이도 Unrated 레이팅 미적용 의견 0 / 1 공개 집계 (커뮤니티 난이도, 주요 주제, 품질)는 의견이 충분히 모이면 공개됩니다.

Log in to rate problems.

개별 의견

아직 의견이 없습니다. 자격이 된다면 위 양식에서 가장 먼저 평가해 보세요.

풀이 제출

Cokolada

게스트로 둘러보고 있습니다. 로그인하면 풀이를 제출하고 진행 상황을 확인할 수 있습니다. 로그인하고 제출하기
공개
C++20 Tab 들여쓰기 · Ctrl+/ 주석 토글 · Enter 자동 들여쓰기
1 1 1 0 공백: 4 · UTF-8