hdu 6095

Posted 早知如此绊人心,何如当初莫相识。

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了hdu 6095相关的知识,希望对你有一定的参考价值。

 1 #include<bits/stdc++.h>
 2 using namespace std;
 3 typedef long long ll;
 4 const int N=1e5+10;
 5 ll a[N];
 6 int main(){
 7     int t ;
 8     cin>>t;
 9     while(t--){
10         int n;
11         ll k;
12         scanf("%d%lld",&n,&k);
13         for(int i=1;i<=n;i++) scanf("%lld",&a[i]);
14         sort(a+1,a+1+n);
15         int sum=0;
16         for(int i=n;i>=2;i--){
17             if(a[i]-a[i-1]>k) break;
18             sum++;
19         }
20         cout<<sum+1<<endl;
21     }

 

以上是关于hdu 6095的主要内容,如果未能解决你的问题,请参考以下文章

hdu 6095

HDU 6095: Rikka with Competition

88E6095芯片VLAN技术分析

HDU4057 Rescue the Rabbit(AC自动机+状压DP)

HDU3247 Resource Archiver(AC自动机+BFS+DP)

POJ - 2778 ~ HDU - 2243 AC自动机+矩阵快速幂