CF1119G.Get Ready for the Battle
普及/提高-
通过率:0%
AC君温馨提醒
该题目为【codeforces】题库的题目,您提交的代码将被提交至codeforces进行远程评测,并由ACGO抓取测评结果后进行展示。由于远程测评的测评机由其他平台提供,我们无法保证该服务的稳定性,若提交后无反应,请等待一段时间后再进行重试。
题目描述
Recently Evlampy installed one interesting computer game, one of aspects of which is to split army into several groups and then fight with enemy's groups. Let us consider a simplified version of the battle.
In the nearest battle Evlampy should fight an enemy army that consists of m groups, the i -th of which has hpi health points.
Evlampy's army consists of n equal soldiers. Before each battle he should split his army in exactly m groups (possibly, empty) so that the total size of the groups is n . The battle is played step-by-step. On each step each of Evlampy's groups attacks exactly one enemy group. Thus, each step is described with an array of m integers a1,a2,…,am , meaning that the i -th Evlampy's group attacks the ai -th enemy group. Different groups can attack same group, on each step the array a is chosen independently.
After each step the health points of each enemy group decreases by the total number of soldiers in Evlampy's groups that attacked this enemy group at this step. Enemy group is destroyed once its health points are zero or negative. Evlampy's soldiers do not lose health.
An example of a step. The numbers in green circles represent the number of soldiers in Evlampy's groups, the arrows represent attacks, the numbers in red circles represent health points of enemy groups, the blue numbers represent how much the health points will decrease after the step.Evlampy understands that the upcoming battle will take the whole night. He became sad because this way he won't have enough time to finish his homework. Now Evlampy wants you to write a program that will help him win in the smallest possible number of steps. Can you help him?
In other words, find the smallest number of steps needed to destroy all enemy groups and show a possible way of doing this. Find the requires splitting of the army into m groups and the arrays a for each step.
输入格式
The first line contains two integers n and m ( 1≤m≤n≤106 ) — the number of soldiers in Evlampy's army and the number of groups in enemy army. m is also equal to the maximum possible number of groups Evlampy can split the army to.
The second line contains m integers hp1,hp2,…,hpm ( 1≤hpi≤106 ) — the health points of each of the enemy groups.
It is guaranteed that the sum of hpi does not exceed 106 .
输出格式
Print a single integer t — the minimum possible number of steps needed to win the battle.
After that print m integers s1,s2,…,sm ( si≥0 , s1+s2+…+sm=n ), meaning that the i -th group of Evlampy's army should contain si soldiers.
In each of the next t lines print m integers a1,a2,…,am ( 1≤ai≤m ) — the description of one step. The integers mean that on the corresponding step the i -th Evlampy's group should attack the ai -th enemy group. It is allowed to attack an already destroyed group.
输入输出样例
输入#1
13 7 6 4 3 7 2 1 5
输出#1
3 0 1 2 3 1 2 4 2 6 2 4 4 2 4 3 1 7 1 7 7 1 3 1 5 3 7 5 1
输入#2
6 5 3 3 3 3 3
输出#2
3 3 3 0 0 0 1 2 3 4 5 3 4 5 5 5 5 5 5 5 5
输入#3
7 4 1 5 9 2
输出#3
3 1 2 4 0 1 4 2 3 2 3 3 3 3 3 3 3
说明/提示
The first example is shown below.