134. Gas Station - Detailed Explanation

Free Coding Questions Catalog
Boost your coding skills with our essential coding questions catalog. Take a step towards a better tech career now!

Problem Statement

You are given two integer arrays, gas and cost, both of length n. There are n gas stations arranged in a circle. At station i, you can obtain gas[i] units of fuel. It costs cost[i] units of fuel to travel from station i to station (i + 1) mod n. You start with an empty gas tank at one of the gas stations. Your task is to return the starting gas station's index if you can travel around the circuit once (completing a full circle), otherwise return -1.

Example Inputs & Outputs

  • Example 1:
    Input:

    gas = [1, 2, 3, 4, 5]
    cost = [3, 4, 5, 1, 2]
    

    Output: 3
    Explanation:

    • Start at station 3:
      • Fuel available = 4; cost to go to station 4 = 1; remaining fuel = 3.
      • At station 4, add gas = 5; fuel becomes 8; cost to station 0 = 2; remaining fuel = 6.
      • At station 0, add gas = 1; fuel becomes 7; cost to station 1 = 3; remaining fuel = 4.
      • At station 1, add gas = 2; fuel becomes 6; cost to station 2 = 4; remaining fuel = 2.
      • At station 2, add gas = 3; fuel becomes 5; cost to station 3 = 5; remaining fuel = 0.
      • The journey is completed, returning to station 3.
  • Example 2:
    Input:

    gas = [2, 3, 4]
    cost = [3, 4, 3]
    

    Output: -1
    Explanation:

    • Total gas = 2 + 3 + 4 = 9; total cost = 3 + 4 + 3 = 10.
    • Since the overall gas is less than the overall cost, it is impossible to complete the circuit.

Constraints

  • The length of gas and cost arrays is the same (n ≥ 1).
  • 0 ≤ gas[i], cost[i] ≤ 10⁴.
  • The solution must determine if a complete circuit is possible and, if so, identify the starting station index.

Hints

  1. Check Overall Feasibility:
    Before trying to find a starting station, compare the total gas available with the total cost required. If total gas is less than total cost, it’s impossible to complete the circuit.

  2. Greedy Approach with Running Tank:
    As you iterate over the gas stations, keep track of the current fuel balance. When the fuel balance becomes negative, it means you cannot reach the next station starting from the current candidate—so, reset the candidate to the next station.

Approaches

1. Brute Force Approach

Idea:

  • For every station, simulate the journey around the circuit starting from that station.
  • Check if the fuel never drops below zero during the trip.
  • Return the first station where the simulation succeeds.

Drawbacks:

  • The brute force approach requires simulating a full circuit for each starting station, leading to a time complexity of O(n²), which is impractical for large inputs.

2. Optimal Greedy Approach

Key Observations:

  • If the total gas is less than the total cost, no solution exists.
  • If you start at a station and at some point your fuel balance drops below zero, then none of the stations between your start and that point can be the valid starting point. You can then jump to the next station after the failure point.

Algorithm Steps:

  1. Check Total Feasibility:
    Sum all gas and cost values. If total_gas < total_cost, return -1.

  2. Iterate and Track Fuel Balance:

    • Initialize start = 0 and currentTank = 0.
    • For each station i, update currentTank += gas[i] - cost[i].
    • If currentTank becomes negative, set start = i + 1 and reset currentTank = 0.
  3. Return start:
    After the loop, start will be the candidate starting station that can complete the circuit.

Visual Walkthrough (Example 1: [1,2,3,4,5] & [3,4,5,1,2]):

  • Station 0:
    Fuel difference = 1 - 3 = -2
    currentTank becomes negative → cannot start at 0. Set start = 1, reset currentTank = 0.

  • Station 1:
    Fuel difference = 2 - 4 = -2
    currentTank negative again → cannot start at 1. Set start = 2, reset currentTank = 0.

  • Station 2:
    Fuel difference = 3 - 5 = -2
    currentTank negative → set start = 3, reset currentTank = 0.

  • Station 3:
    Fuel difference = 4 - 1 = +3
    currentTank becomes 3 → continue.

  • Station 4:
    Fuel difference = 5 - 2 = +3
    currentTank becomes 6 → complete the loop.

Since the total gas is greater than or equal to total cost, starting at station 3 allows you to complete the circuit.

Code Implementations

Python Code

Python3
Python3

. . . .

Java Code

Java
Java

. . . .

Complexity Analysis

  • Time Complexity:
    • Optimal Approach:
      The solution makes a single pass over the arrays, resulting in O(n) time complexity.
  • Space Complexity:
    • Only a few integer variables are used. The space complexity is O(1).

Step-by-Step Walkthrough

  1. Feasibility Check:
    First, sum all values in gas and cost. If totalGas < totalCost, return -1 immediately because it’s impossible to complete the circuit.

  2. Initialization:
    Set start = 0 and currentTank = 0.

  3. Traverse the Stations:
    For each station i:

    • Update the running fuel balance: currentTank += gas[i] - cost[i].
    • If currentTank becomes negative, it means the journey cannot be continued from the current starting station. Set start = i + 1 and reset currentTank to 0.
  4. Final Result:
    Once the loop completes, return start as the valid starting station.

Common Mistakes

  • Not Checking Total Feasibility:
    Forgetting to compare the total gas and total cost can lead to unnecessary computation when a solution is impossible.

  • Resetting the Tank Incorrectly:
    Failing to reset currentTank when it drops below zero may cause an incorrect starting station to be chosen.

  • Misinterpretation of Negative Balance:
    Not realizing that a negative fuel balance implies none of the stations between the last successful start and the current station can serve as a valid starting point.

Edge Cases & Alternative Variations

  • Edge Cases:

    • Empty Input:
      Although the constraints guarantee at least one station, consider inputs with one station.

    • Exact Match:
      When total gas equals total cost exactly, the chosen start index should still allow completing the circuit.

  • Alternative Variations:

    • Circular Route with Variable Tank Capacity:
      What if the car’s tank capacity is limited? Additional constraints would be required.
    • Minimum Refuels Required:
      Instead of finding a starting station, determine the minimum number of refuels needed to complete the journey.
  • Jump Game:
    Involves determining if you can reach the end of an array based on jump lengths.

  • Circular Tour:
    A variation where you need to determine if a tour is possible given resource constraints.

  • Minimum Number of Refueling Stops:
    A more complex problem involving optimizing stops on a route.

TAGS
leetcode
CONTRIBUTOR
Design Gurus Team
-

GET YOUR FREE

Coding Questions Catalog

Design Gurus Newsletter - Latest from our Blog
Boost your coding skills with our essential coding questions catalog.
Take a step towards a better tech career now!
Explore Answers
What is the requirement for data analyst?
281. Zigzag Iterator - Detailed Explanation
Learn to solve Leetcode 281. Zigzag Iterator with multiple approaches.
Refined communication strategies for panel-style tech interviews
Related Courses
Image
Grokking the Coding Interview: Patterns for Coding Questions
Grokking the Coding Interview Patterns in Java, Python, JS, C++, C#, and Go. The most comprehensive course with 476 Lessons.
Image
Grokking Modern AI Fundamentals
Master the fundamentals of AI today to lead the tech revolution of tomorrow.
Image
Grokking Data Structures & Algorithms for Coding Interviews
Unlock Coding Interview Success: Dive Deep into Data Structures and Algorithms.
Image
One-Stop Portal For Tech Interviews.
Copyright © 2025 Design Gurus, LLC. All rights reserved.
;