1475. Final Prices With a Special Discount in a Shop
Difficulty: Easy
Topics: Array, Stack, Monotonic Stack
You are given an integer array prices where prices[i] is the price of the ith item in a shop.
There is a special discount for items in the shop. If you buy the ith item, then you will receive a discount equivalent to prices[j] where j is the minimum index such that j > i and prices[j]
Return an integer array answer where answer[i] is the final price you will pay for the ith item of the shop, considering the special discount.
Example 1:
- Input: prices = [8,4,6,2,3]
- Output: [4,2,4,2,3]
-
Explanation:
- For item 0 with price[0]=8 you will receive a discount equivalent to prices[1]=4, therefore, the final price you will pay is 8 - 4 = 4.
- For item 1 with price[1]=4 you will receive a discount equivalent to prices[3]=2, therefore, the final price you will pay is 4 - 2 = 2.
- For item 2 with price[2]=6 you will receive a discount equivalent to prices[3]=2, therefore, the final price you will pay is 6 - 2 = 4.
- For items 3 and 4 you will not receive any discount at all.
Example 2:
- Input: prices = [1,2,3,4,5]
- Output: [1,2,3,4,5]
- Explanation: In this case, for all items, you will not receive any discount at all.
Example 3:
- Input: prices = [10,1,1,6]
- Output: [9,0,1,6]
Constraints:
- 1
- 1
Hint:
- Use brute force: For the ith item in the shop with a loop find the first position j satisfying the conditions and apply the discount, otherwise, the discount is 0.
Solution:
We need to apply a special discount based on the condition that there is a later item with a price less than or equal to the current price, we can use a brute-force approach. We'll iterate over the prices array and, for each item, look for the first item with a lower or equal price after it. This can be achieved with nested loops. We can utilize a stack to efficiently keep track of the items' prices and apply the special discount.
Approach:
-
Stack Approach:
- We can iterate over the prices array from left to right. For each item, we'll use the stack to keep track of prices that haven't yet found a discount.
- For each price, we'll check if it is smaller than or equal to the price at the top of the stack. If so, it means that we can apply a discount.
- The stack will store the indices of the items, and for each item, we will check if the current price is greater than the price at the index in the stack, meaning there is no discount. Otherwise, apply the discount by subtracting the corresponding price from the current price.
Edge Case: If no item has a smaller price later in the array, no discount is applied.
Let's implement this solution in PHP: 1475. Final Prices With a Special Discount in a Shop
<?php /** * @param Integer[] $prices * @return Integer[] */ function finalPrices($prices) { ... ... ... /** * go to ./solution.php */ } // Example usage: $prices1 = [8, 4, 6, 2, 3]; $prices2 = [1, 2, 3, 4, 5]; $prices3 = [10, 1, 1, 6]; print_r(finalPrices($prices1)); // Output: [4, 2, 4, 2, 3] print_r(finalPrices($prices2)); // Output: [1, 2, 3, 4, 5] print_r(finalPrices($prices3)); // Output: [9, 0, 1, 6] ?>
Explanation:
-
Initialization:
- Create an array $result of the same size as $prices and initialize it to 0.
-
Outer Loop:
- Loop through each price at index $i to calculate its final price after discounts.
-
Inner Loop:
- For each price $i, iterate through the subsequent prices $j (where $j > $i).
- Check if $prices[$j] is less than or equal to $prices[$i]. If true, set $discount = $prices[$j] and exit the inner loop.
-
Final Price Calculation:
- Subtract the found discount from $prices[$i] and store the result in $result[$i].
-
Return Result:
- After processing all prices, return the final result array.
Complexity:
- Time Complexity: O(n²) (due to the nested loops for each price).
- Space Complexity: O(n) (for the result array).
Example Outputs:
- For prices = [8, 4, 6, 2, 3], the output is [4, 2, 4, 2, 3].
- For prices = [1, 2, 3, 4, 5], the output is [1, 2, 3, 4, 5].
- For prices = [10, 1, 1, 6], the output is [9, 0, 1, 6].
This approach will work within the constraints of the problem (1
Contact Links
If you found this series helpful, please consider giving the repository a star on GitHub or sharing the post on your favorite social networks ?. Your support would mean a lot to me!
If you want more helpful content like this, feel free to follow me:
- GitHub
The above is the detailed content of Final Prices With a Special Discount in a Shop. For more information, please follow other related articles on the PHP Chinese website!

Laravel simplifies handling temporary session data using its intuitive flash methods. This is perfect for displaying brief messages, alerts, or notifications within your application. Data persists only for the subsequent request by default: $request-

The PHP Client URL (cURL) extension is a powerful tool for developers, enabling seamless interaction with remote servers and REST APIs. By leveraging libcurl, a well-respected multi-protocol file transfer library, PHP cURL facilitates efficient execution of various network protocols, including HTTP, HTTPS, and FTP. This extension offers granular control over HTTP requests, supports multiple concurrent operations, and provides built-in security features.

Laravel provides concise HTTP response simulation syntax, simplifying HTTP interaction testing. This approach significantly reduces code redundancy while making your test simulation more intuitive. The basic implementation provides a variety of response type shortcuts: use Illuminate\Support\Facades\Http; Http::fake([ 'google.com' => 'Hello World', 'github.com' => ['foo' => 'bar'], 'forge.laravel.com' =>

PHP logging is essential for monitoring and debugging web applications, as well as capturing critical events, errors, and runtime behavior. It provides valuable insights into system performance, helps identify issues, and supports faster troubleshoot

Do you want to provide real-time, instant solutions to your customers' most pressing problems? Live chat lets you have real-time conversations with customers and resolve their problems instantly. It allows you to provide faster service to your custom

Article discusses late static binding (LSB) in PHP, introduced in PHP 5.3, allowing runtime resolution of static method calls for more flexible inheritance.Main issue: LSB vs. traditional polymorphism; LSB's practical applications and potential perfo

The article discusses adding custom functionality to frameworks, focusing on understanding architecture, identifying extension points, and best practices for integration and debugging.

Alipay PHP...


Hot AI Tools

Undresser.AI Undress
AI-powered app for creating realistic nude photos

AI Clothes Remover
Online AI tool for removing clothes from photos.

Undress AI Tool
Undress images for free

Clothoff.io
AI clothes remover

AI Hentai Generator
Generate AI Hentai for free.

Hot Article

Hot Tools

Dreamweaver CS6
Visual web development tools

Notepad++7.3.1
Easy-to-use and free code editor

Safe Exam Browser
Safe Exam Browser is a secure browser environment for taking online exams securely. This software turns any computer into a secure workstation. It controls access to any utility and prevents students from using unauthorized resources.

SublimeText3 English version
Recommended: Win version, supports code prompts!

ZendStudio 13.5.1 Mac
Powerful PHP integrated development environment