我正在解决一个非常简单的算法问题,它要求递归和记忆。下面的代码工作正常,但不符合时间限制。有人建议我优化尾递归,但它不是尾递归。这只是学习材料,不是作业。
问题
• 如果下雨,蜗牛每天可以爬2m,否则爬1m。
• 每天下雨的概率是 75%。
• 给定天数(<=1000)和高度(<=1000),计算蜗牛能从井里爬出来的概率(爬得比井高)
这个 python 代码是通过递归和记忆实现的。
import sys
sys.setrecursionlimit(10000)
# Probability of success that snails can climb 'targetHeight' within 'days'
def successRate(days, targetHeight):
global cache
# edge case
if targetHeight <= 1:
return 1
if days == 1:
if targetHeight > 2:
return 0
elif targetHeight == 2:
return 0.75
elif targetHeight == 1:
return 0.25
answer = cache[days][targetHeight]
# if the answer is not previously calculated
if answer == -1:
answer = 0.75 * (successRate(days - 1, targetHeight - 2)) + 0.25 * (successRate(days - 1, targetHeight - 1))
cache[days][targetHeight] = answer
return answer
height, duration = map(int, input().split())
cache = [[-1 for j in range(height + 1)] for i in range(duration + 1)] # cache initialized as -1
print(round(successRate(duration, height),7))