Diet Plan Performance โ€” Algorithm Visualization & Coding Challenge

Choose Your Learning Path

How would you like to learn today?
Visualize algorithms in real time, explore them step by step, or challenge yourself with a test.Choose a path to focusโ€”or scroll down to preview all options.

๐Ÿง  Active Learning

Visualize the algorithm step-by-step with interactive animations in real time.

๐Ÿ“– Passive Learning

Read the full explanation, examples, and starter code at your own pace.

๐ŸŽฏ Challenge Mode

Drag and arrange the algorithm steps in the correct execution order.

๐Ÿง  Select Active to activate

JUMP INTO VISUALIZATION
Watch algorithms run step by step.

Follow every state change, comparison, and transformation as the execution unfolds in real time.

๐Ÿ“– Select Passive to activate

Understanding Diet Plan Performance
Detailed explanation and reference materials
Problem Overview

๐Ÿฅ— Diet Plan Performance

A dieter tracks the number of calories consumed each day.
You are given an integer array calories, where calories[i] represents the calories consumed on the iแต—สฐ day.

You are also given three integers:

  • k โ†’ number of consecutive days to consider at a time
  • lower โ†’ minimum healthy calorie limit
  • upper โ†’ maximum healthy calorie limit

๐Ÿ“Š Scoring Rules

For every contiguous group of k days:

  1. Calculate the total calories for those k days.
  2. Compare the total with the given limits:
    • If the total is less than lower, subtract 1 from the score.
    • If the total is greater than upper, add 1 to the score.
    • If the total lies between lower and upper (inclusive), the score does not change.

๐ŸŽฏ Goal

After checking all possible groups of k consecutive days, return the final score.


๐Ÿ“ Constraints

  • 1 โ‰ค calories.length โ‰ค 10โต
  • 0 โ‰ค calories[i] โ‰ค 10โด
  • 1 โ‰ค k โ‰ค calories.length
  • 0 โ‰ค lower โ‰ค upper โ‰ค 10โน

๐Ÿง  Example 1

Input:

calories = [1, 2, 3, 4, 5]
k = 1
lower = 3
upper = 3

Explanation:

Since k = 1, each day is checked individually.

  • Day 1 โ†’ 1 < 3 โ†’ score = -1
  • Day 2 โ†’ 2 < 3 โ†’ score = -2
  • Day 3 โ†’ 3 = 3 โ†’ score unchanged
  • Day 4 โ†’ 4 > 3 โ†’ score = -1
  • Day 5 โ†’ 5 > 3 โ†’ score = 0

Final Score: 0


๐Ÿง  Example 2

Input:

calories = [3, 2, 7, 5, 1]
k = 2
lower = 4
upper = 8

Step-by-step Explanation:

All possible subarrays of length k = 2:

  • Days 1โ€“2 โ†’ 3 + 2 = 5 โ†’ between 4 and 8 โ†’ score unchanged
  • Days 2โ€“3 โ†’ 2 + 7 = 9 โ†’ greater than 8 โ†’ score = +1
  • Days 3โ€“4 โ†’ 7 + 5 = 12 โ†’ greater than 8 โ†’ score = +2
  • Days 4โ€“5 โ†’ 5 + 1 = 6 โ†’ between 4 and 8 โ†’ score unchanged

Final Score: 2


โ€” Written by Saurabh Patil โ€ข B.Tech CSE โ€ข Software Developer

Categories
sliding-window
arrays
leetcode-problem-of-the-day
java
Reference Link
https://leetcode.com/problems/diet-plan-performance/

Loading component...

Starter Code
Test, modify, or copy the starter code. Click "Visualize" to import into the canvas.
Java
Output:
Understood Algorithm, Test Me now ๐ŸŽฎ

๐ŸŽฏ Select Challenge to activate

๐Ÿง  Logic Puzzle
Think & Arrange, Don't Just Copy-Paste

Drag and arrange the algorithm steps in the correct execution order instead of spending time typing code letter by letter.

Arrange the Algorithm Correctly ๐Ÿงฉ

The algorithm is divided into three logical parts. Carefully rearrange each section in the correct order to form a complete and valid solution.

Understand Below Algorithm

Don't Know Current Algorithm ? ย 

Green text means the instruction is placed in the correct position.

Red text means the instruction is in the wrong position.

Block Colors

Instructions with the same background color indicate particular blocks start and end.

A tick mark means the instruction is correct and locked.

๐Ÿ”’ Locked steps cannot be moved. Only unlocked steps are draggable.

๐Ÿ”Š Enable sound for swap feedback and completion effects.

DrawToCode โ€” Visualize, Practice & Master Algorithms

Learn data structures and algorithms through interactive visualizations. Practice coding problems, track your progress, and understand concepts deeply.

Visualization Boardย |ย Problemsย |ย Aboutย |ย Privacy Policy
EmailLinkedInTwitterInstagramGitHub
ยฉ 2026 DrawToCode. All rights reserved.