-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathSherlock_and_Squares.java
76 lines (60 loc) · 1.54 KB
/
Sherlock_and_Squares.java
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
67
68
69
70
71
72
73
74
75
76
public static int squares(int a, int b) {
// Write your code here
int cnt=0;
a = (int)Math.ceil(Math.sqrt(a));
b = (int)Math.floor(Math.sqrt(b));
cnt=b-a+1;
return cnt;
}
///same approach
private static int sqrtFloor(int a)
{
// int ans=1;
long start =1;
long end=a;
long mid=0;
while(start<=end)
{
mid=start+(end-start)/2;
if(mid*mid==a)
return (int)mid;
else if(mid*mid<a)
{
start=mid+1;
}else{
end=mid-1;
}
}
return (int)end;
}
private static int sqrtCeil(int a)
{
// int ans=1;
long start =1;
long end=a;
long mid=0;
while(start<=end)
{
mid=start+(end-start)/2;
if(mid*mid==a)
return (int)mid;
else if(mid*mid<a)
{
start=mid+1;
}else{
end=mid-1;
}
}
return (int)start;
}
public static int squares(int a, int b) {
// Write your code here
int cnt=0;
a = sqrtCeil(a);
// System.out.println(a);
//System.out.println((int)Math.ceil(Math.sqrt(a)));
b = (int)Math.floor(Math.sqrt(b));
// System.out.println(b);
cnt=b-a+1;
return cnt;
}