Rikka with Competition hdu 6095

Posted 不搞事情和咸鱼有什么区别

tags:

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

签到题目,排序然后按序清理掉一定会输的结果就可以。

ac代码:

#include <iostream>
#include <cstdio>
#include <cstring>
#include <algorithm>
using namespace std;
int a[100001];
int main()
{
    int t;
    cin>>t;
    while(t--)
    {
        int n,k;
        int sum=0;
        scanf("%d %d",&n,&k);
        for(int i=0;i<n;i++) scanf("%d",&a[i]);
        sort(a,a+n);
        int vis[100001];
        memset(vis,0,sizeof(vis));
        sum=0;
        for(int j=n-1;j>=0;j--)
        {
            int temp=j-1;
            if(vis[j]) continue;
            while(a[j]-a[temp]>k && temp>=0)
            {
                sum++;
                vis[temp]=1;
                temp--;
            }
        }
        cout<<n-sum<<endl;
    }
    return 0;
}

 

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

Rikka with Competition

Rikka with Competition hdu 6095

HDU 5634 Rikka with Phi

Rikka with Subset

二分-E - Rikka with Mutex

HDU 5634 Rikka with Phi