zoukankan      html  css  js  c++  java
  • Hdu 5289-Assignment 贪心,ST表

    题目: http://acm.hdu.edu.cn/showproblem.php?pid=5289

    Assignment

    Time Limit: 4000/2000 MS (Java/Others)    Memory Limit: 65536/65536 K (Java/Others)
    Total Submission(s): 3175    Accepted Submission(s): 1457


    Problem Description
    Tom owns a company and he is the boss. There are n staffs which are numbered from 1 to n in this company, and every staff has a ability. Now, Tom is going to assign a special task to some staffs who were in the same group. In a group, the difference of the ability of any two staff is less than k, and their numbers are continuous. Tom want to know the number of groups like this.
     
    Input
    In the first line a number T indicates the number of test cases. Then for each case the first line contain 2 numbers n, k (1<=n<=100000, 0<k<=10^9),indicate the company has n persons, k means the maximum difference between abilities of staff in a group is less than k. The second line contains n integers:a[1],a[2],…,a[n](0<=a[i]<=10^9),indicate the i-th staff’s ability.
     
    Output
    For each test,output the number of groups.
     
    Sample Input
    2 4 2 3 1 2 4 10 5 0 3 4 5 2 1 6 7 8 9
     
    Sample Output
    5 28
    Hint
    First Sample, the satisfied groups include:[1,1]、[2,2]、[3,3]、[4,4] 、[2,3]
     
    Author
    FZUACM
     
    Source
     
    Recommend
    We have carefully selected several similar problems for you:  5669 5668 5667 5666 5665 
     
    题意:给你一个数列,再给你一个k,问存在多少个连续子序列使得子序列的最大最小值差值 小于 k.
    题解:
    贪心+ST表
    枚举右端点,因为左端点一定是递增或不变的,所以遇到枚举的区间内的最大最小值差值 大于等于 k,就将左端点加1。然后每次统计个数即可。
    注意:答案要开long long。
     1 #include<bits/stdc++.h>
     2 using namespace std;
     3 #define MAXN 100010
     4 int n,mn[MAXN][17],mx[MAXN][17],a[MAXN];
     5 int read()
     6 {
     7     int s=0,fh=1;char ch=getchar();
     8     while(ch<'0'||ch>'9'){if(ch=='-')fh=-1;ch=getchar();}
     9     while(ch>='0'&&ch<='9'){s=s*10+(ch-'0');ch=getchar();}
    10     return s*fh;
    11 }
    12 void ST()
    13 {
    14     int i,j;
    15     for(i=1;i<=n;i++)mn[i][0]=mx[i][0]=a[i];
    16     for(j=1;(1<<j)<=n;j++)
    17     {
    18         for(i=1;i+(1<<j)-1<=n;i++)
    19         {
    20             mn[i][j]=min(mn[i][j-1],mn[i+(1<<(j-1))][j-1]);
    21             mx[i][j]=max(mx[i][j-1],mx[i+(1<<(j-1))][j-1]);
    22         }
    23     }
    24 }
    25 int Query(int l,int r)
    26 {
    27     int j;
    28     for(j=0;(1<<j)<=(r-l+1);j++);j--;
    29     return max(mx[l][j],mx[r-(1<<j)+1][j])-min(mn[l][j],mn[r-(1<<j)+1][j]);
    30 }
    31 int main()
    32 {
    33     int T,k,i,left,right;
    34     long long ans;
    35     T=read();
    36     while(T--)
    37     {
    38         n=read();k=read();
    39         for(i=1;i<=n;i++)a[i]=read();
    40         ST();
    41         left=1;//左端点(左端点一定是单调递增的)
    42         ans=0;
    43         for(right=1;right<=n;right++)//枚举右端点
    44         {
    45             while(Query(left,right)>=k&&left<right)left++;//在枚举右端点的同时,移动左端点.每次改变右端点时,左端点只可能不变或向右移动.
    46             ans+=((long long)right-left+1LL);//统计的子串为以右端点为最右端,最左端在 右端点->左端点 之间.
    47         }
    48         printf("%lld
    ",ans);
    49     }
    50     fclose(stdin);
    51     fclose(stdout);
    52     return 0;
    53 }
  • 相关阅读:
    模拟电梯运行
    用户需求调研报告
    NABC需求分析
    大道至简---读书随笔3
    二维环形数组求最大子数组和
    结对开发之求最大数组溢出问题
    结对开发之环形数组
    结对开发之电梯调度
    我看“微软拼音”
    团队开发项目之典型用户和用户场景
  • 原文地址:https://www.cnblogs.com/Var123/p/5404427.html
Copyright © 2011-2022 走看看