classSolution{publiclongrepairCars(int[] ranks,int cars){long l =0, r =(long)1e14;long mid =0;long res =-1;// Binary search to guess the answerwhile(l <= r){
mid = l +(r - l)/2;long repairedCars =0;// Cal. total cars can be repaired in mid minutesfor(int rank : ranks){
repairedCars +=Math.sqrt(mid / rank);// Cars this rank can repair}// Validif(repairedCars >= cars){
res = mid;
r = mid -1;}else{// invalid, need more time
l = mid +1;}}return res;}}
▶
有瑕疵的code
這裡直接用分鐘來看但是WA了
classSolution{publiclongrepairCars(int[] ranks,int cars){long l =0L, r =100*1000000*1000000;long mid =0L;// Binary search to guess the answerwhile(l < r){
mid = l +(r - l)/2;// Check if the minimum time is validlong maxTimeToRepair =Long.MIN_VALUE;for(int rank : ranks){long repairTime = rank * cars * cars;// Update the minimum time to repair all the cars
maxTimeToRepair =Math.max(repairTime, maxTimeToRepair);}// Validif(mid > maxTimeToRepair){
r = mid -1;}elseif(mid < maxTimeToRepair){// Invalid, not enough time to repair
l = mid +1;}}return l;}}