D


私信TA

用户名:ALS1111

访问量:22112

签 名:

等  级
排  名 55
经  验 11377
参赛次数 0
文章发表 132
年  龄 0
在职情况 学生
学  校
专  业

  自我简介:

TA的其他文章

解题思路:

深度优先算法。

所给出的两个数只有两个状态,选中和未选中。

然后据此写出代码即可


注意事项:

参考代码:

from cmath import inf  
  
def dfs(temp,cnt,now):  
    global m  
    global maxnum  
    global A  
  
    if cnt == m:  
        if now > maxnum:  
            maxnum = now  
        return  
  
    if temp >= n:  
        return  
  
    dfs(temp+1,cnt+1,now*A[temp])  
    dfs(temp+1,cnt,now)  
  
       
if __name__ == '__main__':    
    k = int(input().strip())  
    maxnum = 0  
    for i in range(k):  
        n,m = map(int,input().strip().split())  
        A = tuple(int(i) for i in input().strip().split())  
        maxnum = -inf  
        dfs(0,0,1)  
        print(maxnum)


 

0.0分

1 人评分

  评论区

  • «
  • »