https://www.acmicpc.net/problem/9184
Problem
- 재귀 호출만 생각하면 신이 난다! 아닌가요? 네 아니에요
- 다음과 같은 재귀함수 w(a, b, c)가 있다.
조건
최적화를 하세요!
SOL
메모이제이션을 할줄아냐? 물어보는 간단한 문제이다.
import sys
sys.setrecursionlimit(10**6)
DP=[[[0]*21 for _ in range(21)] for _ in range(21)]
def w(a,b,c):
if a<=0 or b<=0 or c<=0:
return 1
if a>20 or b>20 or c>20:
return w(20,20,20)
if DP[a][b][c]:
return DP[a][b][c]
if a<b<c:
DP[a][b][c]= w(a, b, c-1) + w(a, b-1, c-1) - w(a, b-1, c)
return DP[a][b][c]
DP[a][b][c] = w(a-1, b, c) + w(a-1, b-1, c) + w(a-1, b, c-1) - w(a-1, b-1, c-1)
return DP[a][b][c]
while True:
a,b,c =map(int,input().split())
if a== -1 and b==-1 and c==-1:
break
print("w(%d, %d, %d) = %d"%(a,b,c,w(a,b,c)))
'알고리즘 문제(SOL)' 카테고리의 다른 글
[백준/14697/파이썬] 방 배정하기 (0) | 2022.01.20 |
---|---|
[백준/2156/파이썬] 포도주 시식 (0) | 2022.01.20 |
[백준/2302/파이썬] 극장 좌석 (0) | 2022.01.19 |
[백준/5557/파이썬] 1학년 (0) | 2022.01.19 |
[백준/1495/파이썬] 기타리스트 (0) | 2022.01.18 |