-
Notifications
You must be signed in to change notification settings - Fork 6
/
Solution.java
48 lines (42 loc) · 1.27 KB
/
Solution.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
/*
* DeveloperName(): Jignesh Chudasama
* GithubName(): https://github.com/Jignesh-81726
*/
public class Solution {
public static void main(String[] args) {
/* Values given in problem statement */
double p = 0.12;
int n = 10;
/* "No more than 2 rejects" */
double result = 0;
for (int x = 0; x <= 2; x++) {
result += binomial(n, x, p);
}
System.out.format("%.3f%n", result);
/* "At least 2 rejects" */
result = 1 - binomial(n, 0, p) - binomial(n, 1, p);
System.out.format("%.3f%n", result);
}
private static Double binomial(int n, int x, double p) {
if (p < 0 || p > 1 || n < 0 || x < 0 || x > n) {
return null;
}
return combinations(n, x) * Math.pow(p, x) * Math.pow(1 - p, n - x);
}
private static Long combinations(int n, int x) {
if (n < 0 || x < 0 || x > n) {
return null;
}
return factorial(n) / (factorial(x) * factorial(n - x));
}
private static Long factorial(int n) {
if (n < 0) {
return null;
}
long result = 1;
while (n > 0) {
result *= n--;
}
return result;
}
}