Overflow in intermediate arithmetic
Wrong move: Temporary multiplications exceed integer bounds.
Usually fails on: Large inputs wrap around unexpectedly.
Fix: Use wider types, modular arithmetic, or rearranged operations.
Build confidence with an intuition-first walkthrough focused on math fundamentals.
A truck has two fuel tanks. You are given two integers, mainTank representing the fuel present in the main tank in liters and additionalTank representing the fuel present in the additional tank in liters.
The truck has a mileage of 10 km per liter. Whenever 5 liters of fuel get used up in the main tank, if the additional tank has at least 1 liters of fuel, 1 liters of fuel will be transferred from the additional tank to the main tank.
Return the maximum distance which can be traveled.
Note: Injection from the additional tank is not continuous. It happens suddenly and immediately for every 5 liters consumed.
Example 1:
Input: mainTank = 5, additionalTank = 10 Output: 60 Explanation: After spending 5 litre of fuel, fuel remaining is (5 - 5 + 1) = 1 litre and distance traveled is 50km. After spending another 1 litre of fuel, no fuel gets injected in the main tank and the main tank becomes empty. Total distance traveled is 60km.
Example 2:
Input: mainTank = 1, additionalTank = 2 Output: 10 Explanation: After spending 1 litre of fuel, the main tank becomes empty. Total distance traveled is 10km.
Constraints:
1 <= mainTank, additionalTank <= 100Problem summary: A truck has two fuel tanks. You are given two integers, mainTank representing the fuel present in the main tank in liters and additionalTank representing the fuel present in the additional tank in liters. The truck has a mileage of 10 km per liter. Whenever 5 liters of fuel get used up in the main tank, if the additional tank has at least 1 liters of fuel, 1 liters of fuel will be transferred from the additional tank to the main tank. Return the maximum distance which can be traveled. Note: Injection from the additional tank is not continuous. It happens suddenly and immediately for every 5 liters consumed.
Start with the most direct exhaustive search. That gives a correctness anchor before optimizing.
Pattern signal: Math
5 10
1 2
Source-backed implementations are provided below for direct study and interview prep.
// Accepted solution for LeetCode #2739: Total Distance Traveled
class Solution {
public int distanceTraveled(int mainTank, int additionalTank) {
int ans = 0, cur = 0;
while (mainTank > 0) {
cur++;
ans += 10;
mainTank--;
if (cur % 5 == 0 && additionalTank > 0) {
additionalTank--;
mainTank++;
}
}
return ans;
}
}
// Accepted solution for LeetCode #2739: Total Distance Traveled
func distanceTraveled(mainTank int, additionalTank int) (ans int) {
cur := 0
for mainTank > 0 {
cur++
ans += 10
mainTank--
if cur%5 == 0 && additionalTank > 0 {
additionalTank--
mainTank++
}
}
return
}
# Accepted solution for LeetCode #2739: Total Distance Traveled
class Solution:
def distanceTraveled(self, mainTank: int, additionalTank: int) -> int:
ans = cur = 0
while mainTank:
cur += 1
ans += 10
mainTank -= 1
if cur % 5 == 0 and additionalTank:
additionalTank -= 1
mainTank += 1
return ans
// Accepted solution for LeetCode #2739: Total Distance Traveled
impl Solution {
pub fn distance_traveled(mut main_tank: i32, mut additional_tank: i32) -> i32 {
let mut cur = 0;
let mut ans = 0;
while main_tank > 0 {
cur += 1;
main_tank -= 1;
ans += 10;
if cur % 5 == 0 && additional_tank > 0 {
additional_tank -= 1;
main_tank += 1;
}
}
ans
}
}
// Accepted solution for LeetCode #2739: Total Distance Traveled
// Auto-generated TypeScript example from java.
function exampleSolution(): void {
}
// Reference (java):
// // Accepted solution for LeetCode #2739: Total Distance Traveled
// class Solution {
// public int distanceTraveled(int mainTank, int additionalTank) {
// int ans = 0, cur = 0;
// while (mainTank > 0) {
// cur++;
// ans += 10;
// mainTank--;
// if (cur % 5 == 0 && additionalTank > 0) {
// additionalTank--;
// mainTank++;
// }
// }
// return ans;
// }
// }
Use this to step through a reusable interview workflow for this problem.
Simulate the process step by step — multiply n times, check each number up to n, or iterate through all possibilities. Each step is O(1), but doing it n times gives O(n). No extra space needed since we just track running state.
Math problems often have a closed-form or O(log n) solution hidden behind an O(n) simulation. Modular arithmetic, fast exponentiation (repeated squaring), GCD (Euclidean algorithm), and number theory properties can dramatically reduce complexity.
Review these before coding to avoid predictable interview regressions.
Wrong move: Temporary multiplications exceed integer bounds.
Usually fails on: Large inputs wrap around unexpectedly.
Fix: Use wider types, modular arithmetic, or rearranged operations.