-
Notifications
You must be signed in to change notification settings - Fork 61
/
Copy pathmax-counters.js
74 lines (48 loc) · 1.33 KB
/
max-counters.js
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
/*
https://app.codility.com/programmers/lessons/4-counting_elements/max_counters/
Calculate the values of counters after applying all alternating operations: increase counter by 1; set value of all counters to current maximum.
*/
console.log('// MAX COUNTERS //');
function solution(N, A) {
var counter = new Array(N);
let i = 0;
while (i < N) {
counter[i] = 0;
i++;
}
// A = A.filter(e => (e <= A.length) || (e === N + 1));
let currMax = 0;
let lastMax = 0;
let threshold = N + 1;
i = 0;
while (A[i]) {
const element = A[i];
if (element < threshold) {
if (counter[element - 1] < lastMax) {
counter[element - 1] = lastMax + 1;
}
else {
counter[element - 1]++;
}
if (counter[element - 1] > currMax) {
currMax = counter[element - 1];
}
} else {
lastMax = currMax;
}
i++;
}
let j = 0;
while (j < N) {
if (counter[j] < lastMax) counter[j] = lastMax;
j++
}
return counter;
}
test(5, [3, 4, 4, 6, 1, 4, 4]);
test(1, [2, 1, 1, 2, 1]);
test(1, [1]);
function test(...params) {
console.log('\n(', ...params, ')\n');
console.log('\n=>', solution(...params), '\n\n');
}