返回介绍

solution / 1100-1199 / 1176.Diet Plan Performance / README_EN

发布于 2024-06-17 01:03:22 字数 8697 浏览 0 评论 0 收藏 0

1176. Diet Plan Performance

中文文档

Description

A dieter consumes calories[i] calories on the i-th day. 

Given an integer k, for every consecutive sequence of k days (calories[i], calories[i+1], ..., calories[i+k-1] for all 0 <= i <= n-k), they look at _T_, the total calories consumed during that sequence of k days (calories[i] + calories[i+1] + ... + calories[i+k-1]):

  • If T < lower, they performed poorly on their diet and lose 1 point; 
  • If T > upper, they performed well on their diet and gain 1 point;
  • Otherwise, they performed normally and there is no change in points.

Initially, the dieter has zero points. Return the total number of points the dieter has after dieting for calories.length days.

Note that the total points can be negative.

 

Example 1:

Input: calories = [1,2,3,4,5], k = 1, lower = 3, upper = 3
Output: 0
Explanation: Since k = 1, we consider each element of the array separately and compare it to lower and upper.
calories[0] and calories[1] are less than lower so 2 points are lost.
calories[3] and calories[4] are greater than upper so 2 points are gained.

Example 2:

Input: calories = [3,2], k = 2, lower = 0, upper = 1
Output: 1
Explanation: Since k = 2, we consider subarrays of length 2.
calories[0] + calories[1] > upper so 1 point is gained.

Example 3:

Input: calories = [6,5,0,0], k = 2, lower = 1, upper = 5
Output: 0
Explanation:
calories[0] + calories[1] > upper so 1 point is gained.
lower <= calories[1] + calories[2] <= upper so no change in points.
calories[2] + calories[3] < lower so 1 point is lost.

 

Constraints:

  • 1 <= k <= calories.length <= 10^5
  • 0 <= calories[i] <= 20000
  • 0 <= lower <= upper

Solutions

Solution 1: Prefix Sum

First, we preprocess a prefix sum array $s$ of length $n+1$, where $s[i]$ represents the total calories of the first $i$ days.

Then we traverse the prefix sum array $s$. For each position $i$, we calculate $s[i+k]-s[i]$, which is the total calories for the consecutive $k$ days starting from the $i$th day. According to the problem description, for each $s[i+k]-s[i]$, we judge its value with $lower$ and $upper$, and update the answer accordingly.

The time complexity is $O(n)$, and the space complexity is $O(n)$. Here, $n$ is the length of the calories array.

class Solution:
  def dietPlanPerformance(
    self, calories: List[int], k: int, lower: int, upper: int
  ) -> int:
    s = list(accumulate(calories, initial=0))
    ans, n = 0, len(calories)
    for i in range(n - k + 1):
      t = s[i + k] - s[i]
      if t < lower:
        ans -= 1
      elif t > upper:
        ans += 1
    return ans
class Solution {
  public int dietPlanPerformance(int[] calories, int k, int lower, int upper) {
    int n = calories.length;
    int[] s = new int[n + 1];
    for (int i = 0; i < n; ++i) {
      s[i + 1] = s[i] + calories[i];
    }
    int ans = 0;
    for (int i = 0; i < n - k + 1; ++i) {
      int t = s[i + k] - s[i];
      if (t < lower) {
        --ans;
      } else if (t > upper) {
        ++ans;
      }
    }
    return ans;
  }
}
class Solution {
public:
  int dietPlanPerformance(vector<int>& calories, int k, int lower, int upper) {
    int n = calories.size();
    int s[n + 1];
    s[0] = 0;
    for (int i = 0; i < n; ++i) {
      s[i + 1] = s[i] + calories[i];
    }
    int ans = 0;
    for (int i = 0; i < n - k + 1; ++i) {
      int t = s[i + k] - s[i];
      if (t < lower) {
        --ans;
      } else if (t > upper) {
        ++ans;
      }
    }
    return ans;
  }
};
func dietPlanPerformance(calories []int, k int, lower int, upper int) (ans int) {
  n := len(calories)
  s := make([]int, n+1)
  for i, x := range calories {
    s[i+1] = s[i] + x
  }
  for i := 0; i < n-k+1; i++ {
    t := s[i+k] - s[i]
    if t < lower {
      ans--
    } else if t > upper {
      ans++
    }
  }
  return
}
function dietPlanPerformance(calories: number[], k: number, lower: number, upper: number): number {
  const n = calories.length;
  const s: number[] = new Array(n + 1).fill(0);
  for (let i = 0; i < n; ++i) {
    s[i + 1] = s[i] + calories[i];
  }
  let ans = 0;
  for (let i = 0; i < n - k + 1; ++i) {
    const t = s[i + k] - s[i];
    if (t < lower) {
      --ans;
    } else if (t > upper) {
      ++ans;
    }
  }
  return ans;
}

Solution 2: Sliding Window

We maintain a sliding window of length $k$, and the sum of the elements in the window is denoted as $s$. If $s \lt lower$, the score decreases by $1$; if $s > upper$, the score increases by $1$.

The time complexity is $O(n)$, where $n$ is the length of the calories array. The space complexity is $O(1)$.

class Solution:
  def dietPlanPerformance(
    self, calories: List[int], k: int, lower: int, upper: int
  ) -> int:
    def check(s):
      if s < lower:
        return -1
      if s > upper:
        return 1
      return 0

    s, n = sum(calories[:k]), len(calories)
    ans = check(s)
    for i in range(k, n):
      s += calories[i] - calories[i - k]
      ans += check(s)
    return ans
class Solution {
  public int dietPlanPerformance(int[] calories, int k, int lower, int upper) {
    int s = 0, n = calories.length;
    for (int i = 0; i < k; ++i) {
      s += calories[i];
    }
    int ans = 0;
    if (s < lower) {
      --ans;
    } else if (s > upper) {
      ++ans;
    }
    for (int i = k; i < n; ++i) {
      s += calories[i] - calories[i - k];
      if (s < lower) {
        --ans;
      } else if (s > upper) {
        ++ans;
      }
    }
    return ans;
  }
}
class Solution {
public:
  int dietPlanPerformance(vector<int>& calories, int k, int lower, int upper) {
    int n = calories.size();
    int s = accumulate(calories.begin(), calories.begin() + k, 0);
    int ans = 0;
    if (s < lower) {
      --ans;
    } else if (s > upper) {
      ++ans;
    }
    for (int i = k; i < n; ++i) {
      s += calories[i] - calories[i - k];
      if (s < lower) {
        --ans;
      } else if (s > upper) {
        ++ans;
      }
    }
    return ans;
  }
};
func dietPlanPerformance(calories []int, k int, lower int, upper int) (ans int) {
  n := len(calories)
  s := 0
  for _, x := range calories[:k] {
    s += x
  }
  if s < lower {
    ans--
  } else if s > upper {
    ans++
  }
  for i := k; i < n; i++ {
    s += calories[i] - calories[i-k]
    if s < lower {
      ans--
    } else if s > upper {
      ans++
    }
  }
  return
}
function dietPlanPerformance(calories: number[], k: number, lower: number, upper: number): number {
  const n = calories.length;
  let s = calories.slice(0, k).reduce((a, b) => a + b);
  let ans = 0;
  if (s < lower) {
    --ans;
  } else if (s > upper) {
    ++ans;
  }
  for (let i = k; i < n; ++i) {
    s += calories[i] - calories[i - k];
    if (s < lower) {
      --ans;
    } else if (s > upper) {
      ++ans;
    }
  }
  return ans;
}

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。
列表为空,暂无数据
    我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
    原文