1475. 商品折扣后的最终价格 02.14(二)

文章提供了两种方法解决计算商品折扣后价格的问题,一个是使用嵌套循环,另一个利用栈的数据结构。主要关注IT技术中的算法设计和实现。
摘要由CSDN通过智能技术生成

给你一个数组 prices ,其中 prices[i] 是商店里第 i 件商品的价格。

商店里正在进行促销活动,如果你要买第 i 件商品,那么你可以得到与 prices[j] 相等的折扣,其中 j 是满足 j > i 且 prices[j] <= prices[i] 的 最小下标 ,如果没有满足条件的 j ,你将没有任何折扣。

请你返回一个数组,数组中第 i 个元素是折扣后你购买商品 i 最终需要支付的价格。

示例 1:

输入:prices = [8,4,6,2,3]
输出:[4,2,4,2,3]
解释:
商品 0 的价格为 price[0]=8 ,你将得到 prices[1]=4 的折扣,所以最终价格为 8 - 4 = 4 。
商品 1 的价格为 price[1]=4 ,你将得到 prices[3]=2 的折扣,所以最终价格为 4 - 2 = 2 。
商品 2 的价格为 price[2]=6 ,你将得到 prices[3]=2 的折扣,所以最终价格为 6 - 2 = 4 。
商品 3 和 4 都没有折扣。

示例 2:

输入:prices = [1,2,3,4,5]
输出:[1,2,3,4,5]
解释:在这个例子中,所有商品都没有折扣。

示例 3:

输入:prices = [10,1,1,6]
输出:[9,0,1,6]

提示:

  • 1 <= prices.length <= 500
  • 1 <= prices[i] <= 10^3
  • public class Solution {
        public int[] FinalPrices(int[] prices) {
            int len = prices.Length;
            int[] res = new int[len];
            for(int i = 0;i<len-1;i++){
                res[i] = prices[i];
                for(int j = i+1;j<len;j++){
                    if(prices[i]>=prices[j]){
                        res[i] = prices[i]-prices[j];
                        break;
                    }
                }
            }
            res[len-1] = prices[len-1];
            return res;
        }
    }
    public class Solution {
        public int[] FinalPrices(int[] prices) {
            int len = prices.Length;
            int[] res = new int[len];
            Stack<int> sta = new Stack<int>();
            for(int i = len-1;i>=0;i--){
                while(sta.Count>0&&sta.Peek()>prices[i]) sta.Pop();
                res[i] = sta.Count !=0 ? prices[i] - sta.Peek():prices[i];
                sta.Push(prices[i]);
            }
            return res;
        }
    }

  • 8
    点赞
  • 8
    收藏
    觉得还不错? 一键收藏
  • 打赏
    打赏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包

打赏作者

小小路灯

你的鼓励将是我创作的最大动力

¥1 ¥2 ¥4 ¥6 ¥10 ¥20
扫码支付:¥1
获取中
扫码支付

您的余额不足,请更换扫码支付或充值

打赏作者

实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值