http://codeforces.com/gym/101911/problem/A

Recently Monocarp got a job. His working day lasts exactly m minutes. During work, Monocarp wants to drink coffee at certain moments: there are n minutes a1,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 ai

, Monocarp must choose the day in which he will drink coffee during the said minute, so that every day at least d minutes pass between any two coffee breaks. Monocarp also wants to take these n 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 d

minutes pass between the end of any working day and the start of the following working day.

For each of the n

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 n

, m, d (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 n

distinct integers a1,a2,…,an (1≤ai≤m), where ai

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 n

given minutes.

In the second line, print n

space separated integers. The i-th of integers should be the index of the day during which Monocarp should have a coffee break at minute ai. Days are numbered from 1

. 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

Note

In the first example, Monocarp can take two coffee breaks during the first day (during minutes 1

and 5, 3 minutes will pass between these breaks). One break during the second day (at minute 2), and one break during the third day (at minute 3

).

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.

题意:n个时间点,一天的时长 l(时间点都不超过l), 要求每两个时间间隔位d

输出:最少要多少天。

每个时间点在哪一天完成。。

//#include <bits/stdc++.h>
#include <cstdio>
#include <cstring>
#include <cmath>
#include <algorithm>
#include <iostream>
#include <algorithm>
#include <iostream>
#include <cstdio>
#include <string>
#include <cstring>
#include <stdio.h>
#include <queue>
#include <stack>;
#include <map>
#include <set>
#include <string.h>
#include <vector>
#define ME(x , y) memset(x , y , sizeof(x))
#define SF(n) scanf("%d" , &n)
#define rep(i , n) for(int i = 0 ; i < n ; i ++)
#define INF 0x3f3f3f3f
#define mod 1000000007
using namespace std;
typedef long long ll ;
int a[];
int ans[]; int main()
{
int n , l , b ;
while(~scanf("%d%d%d" , &n , &l , &b))
{
map<int , int>m;
set<int>s;
for(int i = ; i <= n ; i++)
{
scanf("%d" , &a[i]);
s.insert(a[i]);
m[a[i]] = i;
}
set<int>::iterator it ;
int day = ;
while(s.size() != )
{ for(int i = ; ; )
{
it = s.lower_bound(i); if(it == s.end())
{
day++ ;
break ;
}
else
{
ans[m[*it]] = day ;
s.erase(*it);
i = *it + b + ;
}
}
}
printf("%d\n" , day-);
for(int i = ; i <= n - ; i++)
{
printf("%d " , ans[i]);
}
printf("%d\n" , ans[n]);
} return ;
}

最新文章

  1. 分析js中的constructor 和prototype
  2. 【BZOJ】3436: 小K的农场
  3. swift禁用webView对H5中数字,链接,日期,地址,电话号码做解析
  4. 来抢你们IT狗的饭碗了
  5. 函数响应式编程(FRP)—基础概念篇
  6. table插件实现
  7. IOC容器特性注入第一篇:程序集反射查找
  8. C#操作xml文档,cuid,dategridview显示数据
  9. Margin的垂直外边距问题
  10. SecureCRT 绝佳配色方案, 保护你的眼睛
  11. iPhone手机VPN设置
  12. JavaScript练习笔记整理&#183;2 - 6.24
  13. mysql进阶(十四) 批量更新与批量更新多条记录的不同值实现方法
  14. iOS开发 -------- Block技术中的weak - strong
  15. RDO快速部署OpenStack
  16. Initialization of bean failed; nested exception is java.lang.NoClassDefFoundError: javax/jms/JMSContext
  17. ORM对单表的增删改查
  18. 【模板】Kruskal
  19. CentOS 7下宿主机使用virsh console访问KVM的设置
  20. 【FTP资源】发现一个ArcGIS相关的FTP。

热门文章

  1. PyCharm使用技巧总结
  2. 【改】DOS文件格式转UNIX文件格式
  3. c# tcp 服务客户端
  4. less:运算
  5. Flutter-SearchDelegate搜索框
  6. SpringBoot---异步消息
  7. 为什么选择Linux
  8. python 全栈开发,Day53(jQuery的介绍,jQuery的选择器,jQuery动画效果)
  9. web css
  10. 攻防世界 | hello_pwn