forked from soapyigu/LeetCode-Swift
-
Notifications
You must be signed in to change notification settings - Fork 0
/
GasStation.swift
35 lines (30 loc) · 882 Bytes
/
GasStation.swift
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
/**
* Question Link: https://leetcode.com/problems/gas-station/
* Primary idea: use currentSum and total to keep track of the gas and cost,
* change start index when currentSum is less than 0
*
* Time Complexity: O(n), Space Complexity: O(1)
*
*/
class GasStation {
func canCompleteCircuit(_ gas: [Int], _ cost: [Int]) -> Int {
guard gas.count == cost.count else {
return -1
}
var currentSum = 0
var total = 0
var startIdx = 0
for (i, curtGas) in gas.enumerated() {
currentSum += (curtGas - cost[i])
total += (curtGas - cost[i])
if currentSum < 0 {
startIdx = i + 1
currentSum = 0
}
}
if total < 0 {
return -1
}
return startIdx
}
}