Problem Description
You are given a string s that contains digits 0-9, addition symbols '+', and multiplication symbols '' only, representing a valid math expression of single digit numbers (e.g., 3+52). This expression was given to n elementary school students. The students were instructed to get the answer of the expression by following this order of operations:
- Compute multiplication, reading from left to right; Then,
- Compute addition, reading from left to right.
You are given an integer array answers of length n, which are the submitted answers of the students in no particular order. You are asked to grade the answers, by following these rules:
- If an answer equals the correct answer of the expression, this student will be rewarded 5 points;
- Otherwise, if the answer could be interpreted as if the student applied the operators in the wrong order but had correct arithmetic, this student will be rewarded 2 points;
- Otherwise, this student will be rewarded 0 points.
Return the sum of the points of the students.
Key Insights
- The problem requires evaluating a mathematical expression based on specific order of operations.
- Two different evaluations need to be conducted: one following the correct order (multiplication before addition) and another assuming incorrect order (addition before multiplication).
- The final score for each student depends on whether their answer matches the correct evaluation or the incorrect evaluation.
Space and Time Complexity
Time Complexity: O(n + m), where n is the length of the string representing the expression and m is the number of student answers. Space Complexity: O(1), as we are using a constant amount of space for variables regardless of input size.
Solution
To solve the problem, we can use the following approach:
- Parse the string expression to evaluate the correct answer by respecting the order of operations (multiplication first, then addition).
- Compute the incorrect answer by evaluating the expression as if addition is done first.
- Compare each student's answer to both the correct and incorrect answers, assigning points accordingly.
- Sum the points for all students and return the total.
The key data structures used are simple variables to store the results of the evaluations and a loop to iterate through the students' answers.