Gym - 101911A Coffee Break set保存 map标记 模拟

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 3
3 5 1 2

Output

3
3 1 1 2 

Input

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

Output

2
2 1 1 2 2 1 2 1 1 2 

题意:一天m分钟,一共n个时间休息,休息间隔大于等于d,求最少需要多少天

题解:因为给出的每个时间是不同的,所以我们map标记一下位置,模拟一次次找即可,详见代码

#include<iostream>
#include<cstdio>
#include<queue>
#include<set>
#include<map>
#include<algorithm>
using namespace std;
typedef long long ll;
const int N=2e5+10;
int n,m,d;
struct node{
	int id,x;
}a[N];
int main()
{
	int x;
	while(~scanf("%d%d%d",&n,&m,&d))
	{
		set<int> s;
		map<int,int> mp;
		for(int i=1;i<=n;i++)
		{
			scanf("%d",&x);
			mp[x]=i;
			s.insert(x);
		}	
		set<int>::iterator now=s.begin();//
			
		int tmp=1,cnt;  // tmp 第几天了  cnt 当天到达那个时间了
		a[mp[(*now)]].id=tmp;
		cnt=*now;
		s.erase(now);
		
		while(!s.empty())
		{
			cnt=cnt+d+1; // 加上间隔
			if(cnt>m)  // 大于m 进行下一天
			{
				tmp++;
				cnt=1;
				now=s.lower_bound(cnt);
				cnt=*now;
				a[mp[*now]].id=tmp;
				s.erase(now);
			}
			else
			{
				now=s.lower_bound(cnt);
				if(now==s.end())  // 当天没有符合的 找下一天
				{
					cnt=1;
					tmp++;
					now=s.lower_bound(cnt);
					cnt=*now;
					a[mp[*now]].id=tmp;
					s.erase(now);
				}
				else
				{
					cnt=*now;
					a[mp[*now]].id=tmp;
					s.erase(now);
				}
			}
		}
		printf("%d\n",tmp);
		for(int i=1;i<=n;i++) printf("%d%c",a[i].id," \n"[i==n]);
	}
	return 0;
}

猜你喜欢

转载自blog.csdn.net/mmk27_word/article/details/85052173
今日推荐