-
-
Notifications
You must be signed in to change notification settings - Fork 8.9k
/
Copy pathSolution.java
34 lines (32 loc) · 931 Bytes
/
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
class Solution {
private int[] count;
public double[] sampleStats(int[] count) {
this.count = count;
int mi = 1 << 30, mx = -1;
long s = 0;
int cnt = 0;
int mode = 0;
for (int k = 0; k < count.length; ++k) {
if (count[k] > 0) {
mi = Math.min(mi, k);
mx = Math.max(mx, k);
s += 1L * k * count[k];
cnt += count[k];
if (count[k] > count[mode]) {
mode = k;
}
}
}
double median
= cnt % 2 == 1 ? find(cnt / 2 + 1) : (find(cnt / 2) + find(cnt / 2 + 1)) / 2.0;
return new double[] {mi, mx, s * 1.0 / cnt, median, mode};
}
private int find(int i) {
for (int k = 0, t = 0;; ++k) {
t += count[k];
if (t >= i) {
return k;
}
}
}
}