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\n",ans);
49     }
50     fclose(stdin);
51     fclose(stdout);
52     return 0;
53 }

 

转载于:https://www.cnblogs.com/Var123/p/5404427.html

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值