加油站
在一条环路上有 n
个加油站,其中第 i
个加油站有汽油 gas[i]
升。
你有一辆油箱容量无限的的汽车,从第 i
个加油站开往第 i+1
个加油站需要消耗汽油 cost[i]
升。你从其中的一个加油站出发,开始时油箱为空。
给定两个整数数组 gas
和 cost
,如果你可以按顺序绕环路行驶一周,则返回出发时加油站的编号,否则返回 -1
。如果存在解,则 保证 它是 唯一 的。
public int canCompleteCircuit(int[] gas, int[] cost) {
int store = 0;
int MIN = Integer.MAX_VALUE;
int index = -1;
for (int i = 0; i < gas.length; i++) {
store = store - cost[i] +gas[i] ;
if(store < MIN){
MIN = store;
index = i;
}
}
return store>=0 ? (index + 1)%gas.length : -1;
}
贪心,因为是唯一解,找到跑一圈中总和最小的时刻,从这个时刻后面开始跑即可