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

51nod 1272 最大距离

时间:2017-04-25 23:28:28      阅读:236      评论:0      收藏:0      [点我收藏+]

标签:namespace   name   blog   最大的   数字   https   pac   tps   targe   

题目来源: Codility
基准时间限制:1 秒 空间限制:131072 KB 分值: 20 难度:3级算法题
技术分享 收藏
技术分享 关注
给出一个长度为N的整数数组A,对于每一个数组元素,如果他后面存在大于等于该元素的数,则这两个数可以组成一对。每个元素和自己也可以组成一对。例如:{5, 3, 6, 3, 4, 2},可以组成11对,如下(数字为下标):
(0,0), (0, 2), (1, 1), (1, 2), (1, 3), (1, 4), (2, 2), (3, 3), (3, 4), (4, 4), (5, 5)。其中(1, 4)是距离最大的一对,距离为3。
Input
第1行:1个数N,表示数组的长度(2 <= N <= 50000)。
第2 - N + 1行:每行1个数,对应数组元素Ai(1 <= Ai <= 10^9)。
Output
输出最大距离。
Input示例
6
5
3
6
3
4
2
Output示例
3
 贪心 
#include<cstdio>  
#include<cstring>  
#include<algorithm>  
using namespace std;  
struct node{  
    int hao,shu;  
}dian[60000];  
bool cmp(node xx,node yy)  
{  
    if (xx.shu!=yy.shu)  
    return xx.shu<yy.shu;  
    return xx.hao<yy.hao;  
}  
int main()  
{  
    int n;scanf("%d",&n);  
    for (int i=0;i<n;i++)  
    {  
        scanf("%d",&dian[i].shu);  
        dian[i].hao=i;  
    }  
    sort(dian,dian+n,cmp);  
    int ans=0,mi=dian[0].hao;  
    for (int i=1;i<n;i++)  
    {  
        if (dian[i].hao>mi) ans=max(ans,dian[i].hao-mi);  
        else mi=dian[i].hao;  
    }  
    printf("%d\n",ans);  
    return 0;  
}  

 

51nod 1272 最大距离

标签:namespace   name   blog   最大的   数字   https   pac   tps   targe   

原文地址:http://www.cnblogs.com/ruojisun/p/6764904.html

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