Gas Station

There are some gas stations along a circular route. You are given two integer arrays gas[] denoted as the amount of gas present at each station and cost[] denoted as the cost of travelling to the next station. You have a car with an unlimited gas tank. You begin the journey with an empty tank from one of the gas stations. Return the index of the starting gas station if it’s possible to travel around the circuit without running out of gas at any station in a clockwise direction. If there is no such starting station exists, return -1.
Note: If a solution exists, it is guaranteed to be unique.

Examples:

Input: gas[] = [4, 5, 7, 4], cost[]= [6, 6, 3, 5]
Output: 2
Explanation: It is possible to travel around the circuit from station at index 2. Amount of gas at station 2 is (0 + 7) = 7.
Travel to station 3. Available gas = (7 – 3 + 4) = 8.
Travel to station 0. Available gas = (8 – 5 + 4) = 7.
Travel to station 1. Available gas = (7 – 6 + 5) = 6.
Return to station 2. Available gas = (6 – 6) = 0.
Input: gas[] = [1, 2, 3, 4, 5], cost[] = [3, 4, 5, 1, 2]
Output: 3 Explanation: It is possible to travel around the circuit from station at index 3. Amount of gas at station 3 is (0 + 4) = 4.
Travel to station 4. Available gas = 4 – 1 + 5 = 8.
Travel to station 0. Available gas = 8 – 2 + 1 = 7.
Travel to station 1. Available gas= 7 – 3 + 2 = 6.
Travel to station 2. Available gas = 6 – 4 + 3 = 5.
Travel to station 3. The cost is 5. The gas is just enough to travel back to station 3.
Input: gas[] = [3, 9], cost[] = [7, 6]
Output: -1 Explanation: There is no gas station to start with such that you can complete the circuit.

Constraints:
1 ≤ gas.size(), cost.size() ≤ 106
1 ≤ gas[i], cost[i] ≤ 103


Approach 01:

#include <vector>

using namespace std;

class Solution {
public:
    int startStation(vector<int>& gas, vector<int>& cost) {
        if (accumulate(gas.begin(), gas.end(), 0) < accumulate(cost.begin(), cost.end(), 0))
            return -1;
        int startIndex = 0;
        int currentGas = 0;

        for (int i = 0; i < gas.size(); ++i) {
            currentGas += gas[i] - cost[i];
            if (currentGas < 0) {
                startIndex = i + 1;
                currentGas = 0;
            }
        }
        return startIndex;
    }
};
from typing import List

class Solution:
    def startStation(self, gas: List[int], cost: List[int]) -> int:
        if sum(gas) < sum(cost):
            return -1
            
        startIndex = 0
        currentGas = 0
        
        for i in range(len(gas)):
            currentGas += gas[i] - cost[i]
            if currentGas < 0:
                startIndex = i + 1
                currentGas = 0
                
        return startIndex

Time Complexity:

  • Checking Total Gas and Cost:

    Computing the total gas and total cost using accumulate takes \( O(n) \), where \( n \) is the number of stations.

  • Finding the Start Station:

    Iterating through the stations to determine the valid start index takes \( O(n) \).

  • Total Time Complexity:

    The overall time complexity is \( O(n) \).

Space Complexity:

  • Input Storage:

    The algorithm only uses the given input arrays gas and cost, which do not count toward extra space.

  • Auxiliary Variables:

    Only a few integer variables (startIndex and currentGas) are used, taking \( O(1) \) space.

  • Total Space Complexity:

    The overall space complexity is \( O(1) \).

Leave a Comment

Your email address will not be published. Required fields are marked *

Scroll to Top