Final Prices With a Special Discount in a Shop
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] <= prices[i]. Otherwise, you will not receive any discount at all.
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 <= prices.length <= 500
- 1 <= prices[i] <= 1000
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
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 <= prices.length <= 500), even though it is not the most optimized solution.
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!

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

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

SublimeText3 Chinese version
Chinese version, very easy to use

Zend Studio 13.0.1
Powerful PHP integrated development environment

Dreamweaver CS6
Visual web development tools

SublimeText3 Mac version
God-level code editing software (SublimeText3)

Hot Topics



Alipay PHP...

JWT is an open standard based on JSON, used to securely transmit information between parties, mainly for identity authentication and information exchange. 1. JWT consists of three parts: Header, Payload and Signature. 2. The working principle of JWT includes three steps: generating JWT, verifying JWT and parsing Payload. 3. When using JWT for authentication in PHP, JWT can be generated and verified, and user role and permission information can be included in advanced usage. 4. Common errors include signature verification failure, token expiration, and payload oversized. Debugging skills include using debugging tools and logging. 5. Performance optimization and best practices include using appropriate signature algorithms, setting validity periods reasonably,

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

Article discusses essential security features in frameworks to protect against vulnerabilities, including input validation, authentication, and regular updates.

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

Sending JSON data using PHP's cURL library In PHP development, it is often necessary to interact with external APIs. One of the common ways is to use cURL library to send POST�...

The application of SOLID principle in PHP development includes: 1. Single responsibility principle (SRP): Each class is responsible for only one function. 2. Open and close principle (OCP): Changes are achieved through extension rather than modification. 3. Lisch's Substitution Principle (LSP): Subclasses can replace base classes without affecting program accuracy. 4. Interface isolation principle (ISP): Use fine-grained interfaces to avoid dependencies and unused methods. 5. Dependency inversion principle (DIP): High and low-level modules rely on abstraction and are implemented through dependency injection.

How to automatically set the permissions of unixsocket after the system restarts. Every time the system restarts, we need to execute the following command to modify the permissions of unixsocket: sudo...
