Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | |||||
3 | 4 | 5 | 6 | 7 | 8 | 9 |
10 | 11 | 12 | 13 | 14 | 15 | 16 |
17 | 18 | 19 | 20 | 21 | 22 | 23 |
24 | 25 | 26 | 27 | 28 | 29 | 30 |
Tags
- 제프리리처
- 스프링 핵심 원리
- Four Squares
- Operating System
- FIFO paging
- 에러핸들링
- BOJ
- 우아한레디스
- 2475번
- OS
- 스프링 입문
- inflearn
- Window-Via-c/c++
- TCP/IP
- 우아한 테크 세미나
- redis
- Spring
- C#
- 열혈 TCP/IP 소켓 프로그래밍
- n타일링2
- 운영체제
- Operating System.
- 10026번
- 김영한
- HTTP
- C++
- 토마토
- 윤성우 저자
- 열혈 tcp/ip 프로그래밍
- 이펙티브코틀린
Archives
- Today
- Total
나의 브을로오그으
[c++] 1074번 : Z 본문
https://www.acmicpc.net/problem/1074
#include <iostream>
using namespace std;
#define ELEM_SIZE 2
int N, r, c;
void Z(int length, int row, int column, int* count);
int Pow(int n, int length);
int main()
{
ios::sync_with_stdio(false);
cin.tie(NULL);
int count = -1;
cin >> N >> r >> c;
Z(Pow(ELEM_SIZE, N), 0, 0, &count);
cout << count << '\n';
return 0;
}
int Pow(int n, int length)
{
int result = 1;
for (int i = 0; i < length; ++i)
{
result *= n;
}
return result;
}
void Z(int size, int row, int column, int* count)
{
if (size <= ELEM_SIZE)
{
for (int i = row; i < row + ELEM_SIZE; ++i)
{
for (int j = column; j < column + ELEM_SIZE; ++j)
{
*count += 1;
if (i == r && j == c) return;
}
}
}
else
{
bool isFound = false;
int rowOffset = 0;
int colOffset = 0;
int halfSize = size / 2;
if (r >= row + halfSize)
{
*count += size * halfSize;
++rowOffset;
}
if (c >= column + halfSize)
{
*count += halfSize * halfSize;
++colOffset;
}
row += rowOffset * halfSize;
column += colOffset * halfSize;
Z(size / 2, row, column, count);
}
return;
}
'알고리즘 > BaekJoon' 카테고리의 다른 글
[c++] 1260번 : DFS와 BFS (0) | 2022.05.31 |
---|---|
[c++] 1107번 : 리모컨 (0) | 2022.05.30 |
[c++] 1012번 : 유기농 배추 (0) | 2022.05.18 |
[c++] 1003번 : 피보나치 함수 (0) | 2022.05.18 |
[c++] 18111번 : 마인크래프트 (0) | 2022.05.17 |