2739. Total Distance Traveled
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.
想法:
每消耗5的main就会补1,补到5也会再补=>使用递回
另外每次补的时候都检查additional够不够
以下GO code
func distanceTraveled(mainTank int, additionalTank int) int {
if mainTank/5 == 0 {
return mainTank * 10
}
min := Min(mainTank/5, additionalTank)
return (mainTank - mainTank%5) * 10 + distanceTraveled(mainTank%5 + min, additionalTank - min)
}
func Min(a int, b int) int {
if a < b {
return a
}
return b
}