301271: CF238B. Boring Partition

Memory Limit:256 MB Time Limit:2 S
Judge Style:Text Compare Creator:
Submit:0 Solved:0

Description

Boring Partition

题目描述

This problem is the most boring one you've ever seen. Given a sequence of integers $ a_{1},a_{2},...,a_{n} $ and a non-negative integer $ h $ , our goal is to partition the sequence into two subsequences (not necessarily consist of continuous elements). Each element of the original sequence should be contained in exactly one of the result subsequences. Note, that one of the result subsequences can be empty. Let's define function $ f(a_{i},a_{j}) $ on pairs of distinct elements (that is $ i≠j $ ) in the original sequence. If $ a_{i} $ and $ a_{j} $ are in the same subsequence in the current partition then $ f(a_{i},a_{j})=a_{i}+a_{j} $ otherwise $ f(a_{i},a_{j})=a_{i}+a_{j}+h $ . Consider all possible values of the function $ f $ for some partition. We'll call the goodness of this partiotion the difference between the maximum value of function $ f $ and the minimum value of function $ f $ . Your task is to find a partition of the given sequence $ a $ that have the minimal possible goodness among all possible partitions.

输入输出格式

输入格式


The first line of input contains integers $ n $ and $ h $ $ (2<=n<=10^{5},0<=h<=10^{8}) $ . In the second line there is a list of $ n $ space-separated integers representing $ a_{1},a_{2},...,a_{n} $ $ (0<=a_{i}<=10^{8}) $ .

输出格式


The first line of output should contain the required minimum goodness. The second line describes the optimal partition. You should print $ n $ whitespace-separated integers in the second line. The $ i $ -th integer is $ 1 $ if $ a_{i} $ is in the first subsequence otherwise it should be $ 2 $ . If there are several possible correct answers you are allowed to print any of them.

输入输出样例

输入样例 #1

3 2
1 2 3

输出样例 #1

1
1 2 2 

输入样例 #2

5 10
0 1 0 2 1

输出样例 #2

3
2 2 2 2 2 

说明

In the first sample the values of $ f $ are as follows: $ f(1,2)=1+2+2=5 $ , $ f(1,3)=1+3+2=6 $ and $ f(2,3)=2+3=5 $ . So the difference between maximum and minimum values of $ f $ is $ 1 $ . In the second sample the value of $ h $ is large, so it's better for one of the sub-sequences to be empty.

Input

加入题单

算法标签: