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 | 31 |
Tags
- typeORM
- MongoDB
- GIT
- cookie
- Sequelize
- Express
- game
- Python
- Bull
- 공룡게임
- react
- 자료구조
- mongoose
- nestjs
- OCR
- AWS
- dfs
- Queue
- nodejs
- 정렬
- class
- jest
- flask
- 게임
- Dinosaur
- TypeScript
- Nest.js
- MySQL
- JavaScript
Archives
- Today
- Total
포시코딩
[백준][재귀] 1074 - Z 본문
728x90
문제
https://www.acmicpc.net/problem/1074
코드
N, r, c = map(int, input().split())
def z(n, x, y):
global result
if n == 2:
if x == r and y == c:
print(result)
return
result += 1
if x == r and y+1 == c:
print(result)
return
result += 1
if x+1 == r and y == c:
print(result)
return
result += 1
if x+1 == r and y+1 == c:
print(result)
return
result += 1
return
z(n / 2, x, y)
z(n / 2, x, y+(n/2))
z(n / 2, x+(n/2), y)
z(n / 2, x+(n/2), y+(n/2))
result = 0
z(2**N, 0, 0)
결과가 잘 나오지만 분할 정복 알고리즘을 사용 시 더 개선할 수 있다.
분할 정복 알고리즘이 적용된 코드
def z(n, x, y):
if n == 1:
return 2 * x + y
half = 2 ** (n - 1)
if x < half and y < half:
return z(n - 1, x, y)
elif x < half and y >= half:
return (half ** 2) + z(n - 1, x, y - half)
elif x >= half and y < half:
return (half ** 2) * 2 + z(n - 1, x - half, y)
else:
return (half ** 2) * 3 + z(n - 1, x - half, y - half)
N, r, c = map(int, input().split())
print(z(N, r, c))
위 경우에선 모든 좌표에 대해 체크하며 r, c와 맞아 떨어지는 값을 구하지만
구역에 대한 depth가 내려올 때 해당하는 위치에 대해 특정 값을 더해 구하는 규칙을 통해
r, c의 값에 대해 건너뛰어가며 답을 찾아내기 때문에 재귀 호출 횟수 자체가 훨씬 적어지게 된다.
예로 3 7 7에 대한 입력 시 처음 코드는 46번의 재귀 호출이 발생하지만
분할 정복 알고리즘이 적용된 코드는 20번만 호출한다.
728x90
'자료구조알고리즘 > 문제풀이' 카테고리의 다른 글
[백준][이진탐색] 2805 - 나무 자르기 (0) | 2023.04.30 |
---|---|
[백준][이진탐색] 2110 - 공유기 설치 (0) | 2023.04.29 |
[백준][재귀][DP] 2747 - 피보나치 수 (0) | 2023.04.28 |
[코딩테스트] 최소 경로 합 구하기 - 작성중 (0) | 2023.04.21 |
[프로그래머스][DFS/BFS] 타겟 넘버 - 작성중 (0) | 2023.04.20 |