diff --git a/solution/0100-0199/0134.Gas Station/README.md b/solution/0100-0199/0134.Gas Station/README.md index 3ae6856d3f254..bf1b6222bddf1 100644 --- a/solution/0100-0199/0134.Gas Station/README.md +++ b/solution/0100-0199/0134.Gas Station/README.md @@ -151,23 +151,26 @@ public: ```go func canCompleteCircuit(gas []int, cost []int) int { - n := len(gas) - i, j := n-1, n-1 - cnt, s := 0, 0 - for cnt < n { - s += gas[j] - cost[j] - cnt++ - j = (j + 1) % n - for s < 0 && cnt < n { - i-- - s += gas[i] - cost[i] - cnt++ + totalGas, totalCost := 0, 0 + tank := 0 + startStation := 0 + + for i := 0; i < len(gas); i++ { + totalGas += gas[i] + totalCost += cost[i] + tank += gas[i] - cost[i] + + if tank < 0 { + + startStation = i + 1 + tank = 0 } } - if s < 0 { + + if totalGas < totalCost { return -1 } - return i + return startStation } ``` diff --git a/solution/0100-0199/0134.Gas Station/README_EN.md b/solution/0100-0199/0134.Gas Station/README_EN.md index da715b425416d..0cf320916ee8c 100644 --- a/solution/0100-0199/0134.Gas Station/README_EN.md +++ b/solution/0100-0199/0134.Gas Station/README_EN.md @@ -142,23 +142,26 @@ public: ```go func canCompleteCircuit(gas []int, cost []int) int { - n := len(gas) - i, j := n-1, n-1 - cnt, s := 0, 0 - for cnt < n { - s += gas[j] - cost[j] - cnt++ - j = (j + 1) % n - for s < 0 && cnt < n { - i-- - s += gas[i] - cost[i] - cnt++ + totalGas, totalCost := 0, 0 + tank := 0 + startStation := 0 + + for i := 0; i < len(gas); i++ { + totalGas += gas[i] + totalCost += cost[i] + tank += gas[i] - cost[i] + + if tank < 0 { + + startStation = i + 1 + tank = 0 } } - if s < 0 { + + if totalGas < totalCost { return -1 } - return i + return startStation } ``` diff --git a/solution/0100-0199/0134.Gas Station/Solution.go b/solution/0100-0199/0134.Gas Station/Solution.go index aea495c5aa5d4..d5bb0db64cfce 100644 --- a/solution/0100-0199/0134.Gas Station/Solution.go +++ b/solution/0100-0199/0134.Gas Station/Solution.go @@ -1,19 +1,22 @@ func canCompleteCircuit(gas []int, cost []int) int { - n := len(gas) - i, j := n-1, n-1 - cnt, s := 0, 0 - for cnt < n { - s += gas[j] - cost[j] - cnt++ - j = (j + 1) % n - for s < 0 && cnt < n { - i-- - s += gas[i] - cost[i] - cnt++ + totalGas, totalCost := 0, 0 + tank := 0 + startStation := 0 + + for i := 0; i < len(gas); i++ { + totalGas += gas[i] + totalCost += cost[i] + tank += gas[i] - cost[i] + + if tank < 0 { + + startStation = i + 1 + tank = 0 } } - if s < 0 { + + if totalGas < totalCost { return -1 } - return i + return startStation } \ No newline at end of file