-
Notifications
You must be signed in to change notification settings - Fork 23
/
Copy path0798-smallest-rotation-with-highest-score.js
51 lines (44 loc) · 1.44 KB
/
0798-smallest-rotation-with-highest-score.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
/**
* 798. Smallest Rotation with Highest Score
* https://leetcode.com/problems/smallest-rotation-with-highest-score/
* Difficulty: Hard
*
* You are given an array nums. You can rotate it by a non-negative integer k so that the array
* becomes [nums[k], nums[k + 1], ... nums[nums.length - 1], nums[0], nums[1], ..., nums[k-1]].
* Afterward, any entries that are less than or equal to their index are worth one point.
*
* For example, if we have nums = [2,4,1,3,0], and we rotate by k = 2, it becomes [1,3,0,2,4].
* This is worth 3 points because 1 > 0 [no points], 3 > 1 [no points], 0 <= 2 [one point],
* 2 <= 3 [one point], 4 <= 4 [one point].
*
* Return the rotation index k that corresponds to the highest score we can achieve if we rotated
* nums by it. If there are multiple answers, return the smallest such index k.
*/
/**
* @param {number[]} nums
* @return {number}
*/
var bestRotation = function(nums) {
const n = nums.length;
const changes = new Array(n).fill(0);
for (let i = 0; i < n; i++) {
const lowIndex = (i + 1) % n;
const highIndex = (i - nums[i] + 1 + n) % n;
changes[lowIndex]++;
changes[highIndex]--;
if (lowIndex > highIndex) {
changes[0]++;
}
}
let maxScore = 0;
let maxIndex = 0;
let currentScore = 0;
for (let i = 0; i < n; i++) {
currentScore += changes[i];
if (currentScore > maxScore) {
maxScore = currentScore;
maxIndex = i;
}
}
return maxIndex;
};