题解 | #矩阵乘法计算量估算#

矩阵乘法计算量估算

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

import java.util.*;
public class Main {
        public static void main(String[] args) {
            Scanner sc = new Scanner(System.in);
            while (sc.hasNextLine()) {
                int n = Integer.parseInt(sc.nextLine());
                int[][] num = new int[n][2];
                for (int i = 0; i < n; i++) {
                    String[] arr = sc.nextLine().split(" ");
                    num[i][0] = Integer.parseInt(arr[0]);
                    num[i][1] = Integer.parseInt(arr[1]);
                }
                String msg = sc.nextLine();
                Stack<Integer> z = new Stack<>();
                int count = 0;
                for (int j =0; j < msg.length(); j++) {
                    char tmp = msg.charAt(j);
                    if (tmp == '(') {
                       continue;
                    } else if (tmp == ')') {
                        int cc = z.pop();
                        int cr = z.pop();
                        int bc = z.pop();
                        int br = z.pop();
                        count += br * cc * bc;
                        z.push(br);
                        z.push(cc);
                        
                    } else {
                        int index = tmp - 'A';
                        z.push(num[index][0]);
                        z.push(num[index][1]);
                    }
                }
                System.out.println(count);
            }
        }
}
全部评论
明显不对
1 回复 分享
发布于 2022-03-09 00:09
A(BC) 输入这个计算法则有错,没处理没有括号的情况
1 回复 分享
发布于 2022-11-09 19:01 陕西

相关推荐

评论
2
1
分享
牛客网
牛客企业服务