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 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66
| class Solution{
public int divide(int a, int b){ long x=a,y=b; boolean isNeg= false; if( (x>0 && <0) || ( x <0 && y >0) ){ isNeg=true; } if( x<0){ x= -x; } if(y<0){ y= -y; } long l = 0, r = x; while(l < r){ long mid = 1+r+1 >>1 if (mul(mid, y) <= x) { l = mid; } else { r = mid - 1; } } long ans = isNeg ? -l : l; if (ans > Integer.MAX_VALUE || ans < Integer.MIN_VALUE) return Integer.MAX_VALUE; return (int)ans;
} long mul(long a, long k) { long ans = 0; while (k > 0) { if ((k & 1) == 1) ans += a; k >>= 1; a += a; } return ans; }
}
|