【CodeForces-1041C】Coffee Break

题目:
Recently Monocarp got a job. His working day lasts exactly mm minutes. During work, Monocarp wants to drink coffee at certain moments: there are nn minutes a1,a2,…,ana1,a2,…,an, when he is able and willing to take a coffee break (for the sake of simplicity let’s consider that each coffee break lasts exactly one minute).

However, Monocarp’s boss doesn’t like when Monocarp takes his coffee breaks too often. So for the given coffee break that is going to be on minute aiai, Monocarp must choose the day in which he will drink coffee during the said minute, so that every day at least dd minutes pass between any two coffee breaks. Monocarp also wants to take these nn coffee breaks in a minimum possible number of working days (he doesn’t count days when he is not at work, and he doesn’t take coffee breaks on such days). Take into account that more than dd minutes pass between the end of any working day and the start of the following working day.

For each of the nn given minutes determine the day, during which Monocarp should take a coffee break in this minute. You have to minimize the number of days spent.

Input

The first line contains three integers nn, mm, dd (1≤n≤2⋅105,n≤m≤109,1≤d≤m)(1≤n≤2⋅105,n≤m≤109,1≤d≤m) — the number of coffee breaks Monocarp wants to have, the length of each working day, and the minimum number of minutes between any two consecutive coffee breaks.

The second line contains nn distinct integers a1,a2,…,ana1,a2,…,an (1≤ai≤m)(1≤ai≤m), where aiai is some minute when Monocarp wants to have a coffee break.

Output

In the first line, write the minimum number of days required to make a coffee break in each of the nn given minutes.

In the second line, print nn space separated integers. The ii-th of integers should be the index of the day during which Monocarp should have a coffee break at minute aiai. Days are numbered from 11. If there are multiple optimal solutions, you may print any of them.

Examples

Input

4 5 33 5 1 2

Output

33 1 1 2

Input

10 10 110 5 7 4 6 3 2 1 9 8

Output

22 1 1 2 2 1 2 1 1 2

Note

In the first example, Monocarp can take two coffee breaks during the first day (during minutes 11 and 55, 33 minutes will pass between these breaks). One break during the second day (at minute 22), and one break during the third day (at minute 33).

In the second example, Monocarp can determine the day of the break as follows: if the minute when he wants to take a break is odd, then this break is on the first day, if it is even, then this break is on the second day.

代码如下:

#include<iostream>
#include<cstdio> 
#include<set>
using namespace std;
int a[300000],ans[300000];
set<pair<int,int> > q;
set<pair<int,int> > ::iterator it;
int main()
{
	int n,m,d,cnt = 0;
	cin >> n >> m >> d;
	for(int i = 1;i <= n;i++){
		cin >> a[i];
		q.insert(make_pair(a[i],i));
	}
	while(!q.empty()){
		int pos = q.begin() -> second;
		ans[pos] = ++cnt;//pos这个位置的咖啡是第cnt天喝的 
		q.erase(q.begin());
		while(1){
			it = q.lower_bound(make_pair(a[pos] + d + 1,0));
			if(it == q.end()) break;
			pos = it -> second;
			ans[pos] = cnt;//这些咖啡是第cnt天喝的 
			q.erase(it);
		}
	}
	cout << cnt << endl;
	for(int i = 1;i <= n;i++){
		if(i != 1) cout << " " << ans[i];
		else cout << ans[i];
	}
	cout << endl;
	return 0;
}

题意:
这道题没看懂题意,看了题解才会的。输入咖啡数n,以及间隔时间d,之后给你这n杯咖啡喝的时间,要求你输出最少花几天喝了这些咖啡,以及每杯咖啡是在第几天喝的。
思路:
用lower_bound进行二分查找,用数组保存。

猜你喜欢

转载自blog.csdn.net/qq_41998938/article/details/88723922