员工参加考试,判断题X10(每个2分),单选题X10(每个4分),多选题X5(每个八分)。只能顺序作答,答对得分,答错不得分。答错三道,中止考试。输入考试结果分数,输出答题可能情况个数。
1 需要dfs传递的参数才写成参数,能全局变量就尽量全局。
2 这题传了开始位置、错误次数、分数,三者都是停止条件。
3 搜索也分回溯或者不回溯。
不回溯:
python:
pythondef cal(score_in):
def dfs(start, error, score):
if start == n:
return
if error >= 3:
return
if score == score_in:
res.append(1) # 此搜索路径是对的,已经拼凑出
return
if score > score_in:
return
dfs(start + 1, error, score + nums[start]) # 本题做对
dfs(start + 1, error + 1, score) # 本题做错
nums = [2] * 10 + [4] * 10 + [8] * 5
n = len(nums)
res = []
dfs(0, 0, 0)
return len(res)
回溯:
pythondef cal(score_in):
def dfs(start, error, score):
if start == n:
return
if error >= 3:
return
if score == score_in:
res.append(1) # 此搜索路径是对的,已经拼凑出
return
if score > score_in:
return
for i in range(start, len(nums)):
score += nums[i] # 本题对
dfs(i + 1, error, score)
score -= nums[i] # 回溯
error += 1
nums = [2] * 10 + [4] * 10 + [8] * 5
n = len(nums)
res = []
dfs(0, 0, 0)
return len(res)
本文作者:Dong
本文链接:
版权声明:本博客所有文章除特别声明外,均采用 CC BY-NC。本作品采用《知识共享署名-非商业性使用 4.0 国际许可协议》进行许可。您可以在非商业用途下自由转载和修改,但必须注明出处并提供原作者链接。 许可协议。转载请注明出处!