Problem Description
Given a string expression representing an expression of fraction addition and subtraction, return the calculation result in string format. The final result should be an irreducible fraction. If your final result is an integer, change it to the format of a fraction that has a denominator 1. So in this case, 2 should be converted to 2/1.
Key Insights
- The expression consists of fractions that can be positive or negative.
- Each fraction has the format ±numerator/denominator.
- The output must be in the irreducible form.
- The input only contains valid irreducible fractions.
- The number of fractions in the expression is limited to 10.
Space and Time Complexity
Time Complexity: O(n), where n is the number of characters in the expression. Space Complexity: O(1), as we only use a few integer variables for calculations.
Solution
To solve the problem, we will follow these steps:
- Parse the input string to extract individual fractions and their signs.
- Use the Least Common Multiple (LCM) to find a common denominator for all fractions.
- Convert each fraction to this common denominator and sum their numerators, taking care to apply the correct signs.
- Simplify the resulting fraction using the Greatest Common Divisor (GCD).
- Format the result appropriately as either an irreducible fraction or an integer in the form of a fraction.
We will use integer arithmetic throughout to avoid precision issues with floating-point numbers.