标签:
这道题有一个需要利用的条件即是如果存在这样一个station则答案唯一。
class Solution: # @param {integer[]} gas # @param {integer[]} cost # @return {integer} def canCompleteCircuit(self, gas, cost): s, tmp_s, ans = 0, 0, 0 for i in range(0, len(gas)): val = gas[i] - cost[i] s += val tmp_s += val if tmp_s < 0: ans = i + 1 tmp_s = 0 if s < 0: return -1 else: return ans
标签:
原文地址:http://www.cnblogs.com/dapanshe/p/4642852.html