리트코드 134번 Gas Station (python)

Kim Yongbin·2023년 10월 6일
0

코딩테스트

목록 보기
120/162

Problem

https://leetcode.com/problems/gas-station/description/

Solution

from typing import List

class Solution:
    def canCompleteCircuit(self, gas: List[int], cost: List[int]) -> int:
        if sum(gas) < sum(cost):
            return - 1

        start, fuel = 0, 0
        for idx in range(len(gas)):
            if fuel + gas[idx] < cost[idx]:
                start = idx + 1
                fuel = 0
            else:
                fuel += gas[idx] - cost[idx]

        return start

gas의 합보다 cost의 합이 크다면 해가 있을 수 없다.

문제에서 정답이 될 수 있는 케이스는 유일하다 했으므로 해당 값을 찾는다.

Reference

파이썬 알고리즘 인터뷰 81번

profile
반박 시 여러분의 말이 맞습니다.

0개의 댓글