每日一题 第四十六期 Codeforces Round 886 (Div. 4)

探讨了如何在编程竞赛中,通过最少删除问题以保证题目的难度分布满足连续题目间最大难度差不超过k的要求,提供了代码实现示例。
摘要由CSDN通过智能技术生成

D. Balanced Round

time limit per test: 2 seconds

memory limit per test: 256 megabytes

input: standard input

output: standard output

You are the author of a Codeforces round and have prepared n n n problems you are going to set, problem i i i having difficulty a i a_i ai. You will do the following process:

  • remove some (possibly zero) problems from the list;
  • rearrange the remaining problems in any order you wish.

A round is considered balanced if and only if the absolute difference between the difficulty of any two consecutive problems is at most k k k (less or equal than k k k).

What is the minimum number of problems you have to remove so that an arrangement of problems is balanced?

Input

The first line contains a single integer t t t ( 1 ≤ t ≤ 1000 1 \leq t \leq 1000 1t1000) — the number of test cases.

The first line of each test case contains two positive integers n n n ( 1 ≤ n ≤ 2 ⋅ 1 0 5 1 \leq n \leq 2 \cdot 10^5 1n2105) and k k k ( 1 ≤ k ≤ 1 0 9 1 \leq k \leq 10^9 1k109) — the number of problems, and the maximum allowed absolute difference between consecutive problems.

The second line of each test case contains n n n space-separated integers a i a_i ai ( 1 ≤ a i ≤ 1 0 9 1 \leq a_i \leq 10^9 1ai109) — the difficulty of each problem.

Note that the sum of n n n over all test cases doesn’t exceed 2 ⋅ 1 0 5 2 \cdot 10^5 2105.

Output

For each test case, output a single integer — the minimum number of problems you have to remove so that an arrangement of problems is balanced.

Example
inputCopy
7
5 1
1 2 4 5 6
1 2
10
8 3
17 3 1 20 12 5 17 12
4 2
2 4 6 8
5 3
2 3 19 10 8
3 4
1 10 5
8 1
8 3 1 4 5 10 7 3
outputCopy
2
0
5
0
3
1
4

Note

For the first test case, we can remove the first 2 2 2 problems and construct a set using problems with the difficulties [ 4 , 5 , 6 ] [4, 5, 6] [4,5,6], with difficulties between adjacent problems equal to ∣ 5 − 4 ∣ = 1 ≤ 1 |5 - 4| = 1 \leq 1 ∣54∣=11 and ∣ 6 − 5 ∣ = 1 ≤ 1 |6 - 5| = 1 \leq 1 ∣65∣=11.

For the second test case, we can take the single problem and compose a round using the problem with difficulty 10 10 10.

AC代码:

#include<map>
#include<set>
#include<stack>
#include<cmath>
#include<queue>
#include<string>
#include<bitset>
#include<cstring>
#include<iostream>
#include<algorithm>
#include<numeric>
//#define endl '\n'
using namespace std;

typedef long long ll;
typedef pair<int, int>PII;
const int N=3e5+10;
const int MOD=998244353;
const int INF=0X3F3F3F3F;
const int dx[]={-1,1,0,0,-1,-1,+1,+1};
const int dy[]={0,0,-1,1,-1,+1,-1,+1};
const int M = 1e8 + 10;

int t;
int a[N];
int main()
{
	cin >> t;
	while(t --){
		int n, k;
		cin >> n >> k;
		for(int i = 1; i <= n; i ++)
		{
			cin >> a[i];
		}
		int ans = 0, maxs = 0;
		sort(a + 1, a + 1 + n);
		for(int i = 1; i <= n; i ++)
		{
			if(a[i] - a[i - 1] > k) ans = 1;
			else ans ++;
            maxs = max(maxs, ans);
		}
		cout << n - maxs << endl;
	}
	return 0;
}
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值