COCI 2007/2008, Contest #4

Task MUZICARI

"The Drinking Musicians", a widely known and popular folk group, are coming to your town. The musicians are known not only by their playing skills, but also their rough character. They never arrive on time, don't know which town they're in, and frequently have trouble finding the stage.

Additionally, during the concert, each of the musicians at one point takes a break. If three or more of them are on a break at the same time, they start stirring trouble in town and the rest of the group start panicking and playing the wrong chords.

The concert will be T minutes long, during which each of the N members will take a break. The length of the break is known for each member.

Help the organizer of the concert by writing a program that determines how to schedule the breaks of the member so that, at any given moment, at most two are absent from the stage. All breaks must be entirely during the concert.

Input

The first line of input contains the integers T and N (1 ≤ T ≤ 5000, 1 ≤ N ≤ 500), the length of the concert in minutes and the number of musicians in the group.

The next line contains N integers separated by single spaces, the length of the break in minutes for each member.

Note: The input data will be such that a solution, although not necessarily unique, will always exist.

Output

For each musician output one integer, the number of minutes the musician will spend on stage before going on the break.

Output the musicians in the same order they were given in the input.

Examples

Input

8 3
4 4 4

Output

0 2 4

Input

10 5
7 5 1 2 3

Output

3 3 9 0 0

All Submissions
Best Solutions


Point Value: 15
Time Limit: 1.00s
Memory Limit: 32M
Added: Aug 13, 2013

Languages Allowed:
C++03, PAS, C, HASK, ASM, RUBY, PYTH2, JAVA, PHP, SCM, CAML, PERL, C#, C++11, PYTH3

Comments (Search)

It's quiet in here...