码迷,mamicode.com
首页 > 其他好文 > 详细

116th LeetCode Weekly Contest Maximum Width Ramp

时间:2018-12-24 02:59:49      阅读:228      评论:0      收藏:0      [点我收藏+]

标签:maxwidth   test   tuple   array   ret   nbsp   idt   note   one   

Given an array A of integers, a ramp is a tuple (i, j) for which i < j and A[i] <= A[j].  The width of such a ramp is j - i.

Find the maximum width of a ramp in A.  If one doesn‘t exist, return 0.

 

Example 1:

Input: [6,0,8,2,1,5]
Output: 4
Explanation: 
The maximum width ramp is achieved at (i, j) = (1, 5): A[1] = 0 and A[5] = 5.

Example 2:

Input: [9,8,1,0,1,9,4,0,4,1]
Output: 7
Explanation: 
The maximum width ramp is achieved at (i, j) = (2, 9): A[2] = 1 and A[9] = 1.

 

Note:

  1. 2 <= A.length <= 50000
  2. 0 <= A[i] <= 50000

题意在解释里说的很清楚了,就看怎么想。

首先保证后面的数字比前面的是大于等于关系,这个排序可以搞定,然后到这个数为止,前面数字的位置里最小的数是谁,减去就好了

struct P{
    int num;
    int pos;
}H[50002];
bool cmp(P a,P b){
    if(a.num == b.num){
        return a.pos<b.pos;
    }else{
        return a.num<b.num;
    }
}
class Solution {
public:

    int maxWidthRamp(vector<int>& A) {
        int len = A.size();
        for(int i=0;i<len;i++){
            H[i].num = A[i];
            H[i].pos = i;
        }
        sort(H,H+len,cmp);
        int Min = H[0].pos;
        int sum = -1;
        int cum = 0;
        for(int i=1;i<len;i++){
            //cout<<H[i].pos<<" "<<Min<<endl;
            if(Min > H[i].pos){
                Min = H[i].pos;
            }else{
                
                cum = H[i].pos - Min;
                sum = max(sum,cum);
            }
            
        }
        if(sum == -1){
            sum = 0;
        }
        return sum;
    }
};

 

116th LeetCode Weekly Contest Maximum Width Ramp

标签:maxwidth   test   tuple   array   ret   nbsp   idt   note   one   

原文地址:https://www.cnblogs.com/yinghualuowu/p/10166554.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!