LeetCode 962. 最大宽度坡(C++、python)

给定一个整数数组 A是元组 (i, j),其中  i < j 且 A[i] <= A[j]。这样的坡的宽度为 j - i

找出 A 中的坡的最大宽度,如果不存在,返回 0 。

 

示例 1:

输入:[6,0,8,2,1,5]
输出:4
解释:
最大宽度的坡为 (i, j) = (1, 5): A[1] = 0 且 A[5] = 5.

示例 2:

输入:[9,8,1,0,1,9,4,0,4,1]
输出:7
解释:
最大宽度的坡为 (i, j) = (2, 9): A[2] = 1 且 A[9] = 1.

 

提示:

2 <= A.length <= 50000

0 <= A[i] <= 50000

C++

class Solution {
public:
    static bool compare(pair<int,int> a, pair<int,int> b)
    {
        if(a.first==b.first)
        {
            return a.second<b.second;
        }
        else
        {
            return a.first<b.first;
        }
    }
    int maxWidthRamp(vector<int>& A) 
    {
        int n=A.size();
        int res=0;
        vector<pair<int,int>> tmp;
        for(int i=0;i<n;i++)
        {
            tmp.push_back(make_pair(A[i],i));
        }
        sort(tmp.begin(),tmp.end(),compare);
        int index=tmp[0].second;
        for(int i=1;i<n;i++)
        {
            res=max(res,tmp[i].second-index);
            index=min(index,tmp[i].second);
        }
        return res;
    }
};

python

class Solution:
    def maxWidthRamp(self, A: List[int]) -> int:
        n=len(A)
        tmp=[]
        for i in range(n):
            tmp.append([A[i],i])
        tmp=sorted(tmp,key=lambda x:(x[0],x[1]))
        res=0
        index=tmp[0][1]
        for i in range(1,n):
            res=max(res,tmp[i][1]-index)
            index=min(index,tmp[i][1])
        return res
        

 

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

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

余额充值