题解 | #矩阵乘法计算量估算#一个括号里不能有三个矩阵

矩阵乘法计算量估算

http://www.nowcoder.com/practice/15e41630514445719a942e004edc0a5b

while True:

try:
    
    n = int(input())
    matrix_list = []
    for i in range(n):
        matrix_list.append([int(i) for i in input().split()])
        
    rule = input()
    
    temp = []
    times = 0
    for i in rule:
        if i.isalpha():
            temp.append(i)
        elif i == ')':
            x = temp.pop()
            y = temp.pop()
            times += matrix_list[ord(y)-65][0] * matrix_list[ord(y)-65][1] * matrix_list[ord(x)-65][1]
            
            matrix_list[ord(y)-65] = (matrix_list[ord(y)-65][0], matrix_list[ord(x)-65][1])
            temp.append(y)
    print(times)
    
except:
    break
全部评论
请教一下,为什么一个括号里不能有3个矩阵呢?
点赞 回复 分享
发布于 2022-03-05 06:33

相关推荐

09-25 00:00
已编辑
电子科技大学 Java
球球与墩墩:这不是前端常考的对象扁平化吗,面试官像是前端出来的 const flattern = (obj) => { const res = {}; const dfs = (curr, path) => { if(typeof curr === 'object' && curr !== null) { const isArray = Array.isArray(curr); for(let key in curr) { const newPath = path ? isArray ? `${path}[${key}]` : `${path}.${key}` : key; dfs(curr[key], newPath); } } else { res[path] = curr } } dfs(obj); return res; }
查看3道真题和解析
点赞 评论 收藏
分享
评论
2
3
分享

创作者周榜

更多
牛客网
牛客网在线编程
牛客网题解
牛客企业服务