RiseOJ는 solved.ac와 제휴 관계가 없습니다. 티어 아이콘 © solved.ac. solved.ac
포럼
COCI00076

Jez

Platinum III 플래티넘 III
난이도
1s
시간 제한
32MB
메모리 제한
1
맞았습니다!!
1
제출 수
100.0%
정답률
레이팅

의견: 0

설명

Luka found a very unusual game board in his attic. Surprisingly, it consists of \(R \cdot C\) square cells. The rows are numbered \(0\) to \(R-1\) top to bottom and the columns \(0\) to \(C-1\) left to right.

What makes the board unusual is the way in which the cells are coloured. Each cell is either grey or white:

  • white, if the row and column numbers of the cell, when represented in binary, have at least one digit \(1\) in the same position. For example, the cell \((4, 5)\) would be white.
  • grey, otherwise. For example, the cell \((2, 5)\) would be grey.

Luka's hedgehog likes walking on this unusual board. The hedgehog starts his walk in the cell \((0, 0)\) and continues in a zig-zag (boustrophedon) pattern: it walks along row \(0\) from left to right, then steps down to row \(1\) and walks it from right to left, then row \(2\) from left to right again, and so on. While the hedgehog is walking, Luka counts how many grey squares it visited.

After visiting \(K\) squares, the hedgehog gets tired and falls asleep.

Knowing the dimensions of the board and the number \(K\) beforehand, write a program that calculates the result.

제약
입력 형식

The first line contains two integers \(R\) (\(1 \le R \le 1\,000\,000\)) and \(C\) (\(1 \le C \le 1\,000\,000\)), the dimensions of the board.

The second line contains the integer \(K\) (\(1 \le K \le R \cdot C\)), the total number of squares the hedgehog visits. Note that this number may not fit in a 32-bit integer.

출력 형식

Output the number of grey cells the hedgehog visits.

Scoring: In test cases worth \(50\%\) of points, \(K\) will be less than \(1\,000\,000\).

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

Subtask 1

50점

\(K < 1\,000\,000\)

Subtask 2

50점

No additional constraints.

예제 1
입력
10 10
6
출력
5
예제 2
입력
3 5
11
출력
8
예제 3
입력
10 10
100
출력
51
문제 정보

riseoj 작성

출처 COCI 2008/2009 Contest 1

평가 및 의견

Jez

개요
출제자 난이도 Platinum III 플래티넘 III 의견 0 / 50 공개 집계 (커뮤니티 난이도, 주요 주제, 품질)는 의견이 충분히 모이면 공개됩니다.

Log in to rate problems.

개별 의견

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

풀이 제출

Jez

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