Bags and Coins

题意翻译

给定长$n$的数组$a$和一个数$s$,构造一个森林,每个点$i$有非负点权$c_i$,要求点$i$的子树中点权之和恰好为$a_i$,并且所有点权的和为$s$。 输出答案时,对于每个$i$,先输出$c_i$,再输出$k_i$表示$i$的儿子数量,然后依次输出$i$的儿子们。无解输出-1。

题目描述

When you were a child you must have been told a puzzle of bags and coins. Anyway, here's one of its versions: A horse has three bags. The first bag has one coin, the second bag has one coin and the third bag has three coins. In total, the horse has three coins in the bags. How is that possible? The answer is quite simple. The third bag contains a coin and two other bags. This problem is a generalization of the childhood puzzle. You have $ n $ bags. You know that the first bag contains $ a_{1} $ coins, the second bag contains $ a_{2} $ coins, ..., the $ n $ -th bag contains $ a_{n} $ coins. In total, there are $ s $ coins. Find the way to arrange the bags and coins so that they match the described scenario or else state that it is impossible to do.

输入输出格式

输入格式


The first line contains two integers $ n $ and $ s $ $ (1<=n,s<=70000) $ — the number of bags and the total number of coins. The next line contains $ n $ integers $ a_{1},a_{2},...,a_{n} $ $ (1<=a_{i}<=70000) $ , where $ a_{i} $ shows the number of coins in the $ i $ -th bag.

输出格式


If the answer doesn't exist, print -1. Otherwise, print $ n $ lines, on the $ i $ -th line print the contents of the $ i $ -th bag. The first number in the line, $ c_{i} $ $ (0<=c_{i}<=a_{i}) $ , must represent the number of coins lying directly in the $ i $ -th bag (the coins in the bags that are in the $ i $ -th bag are not taken into consideration). The second number in the line, $ k_{i} $ $ (0<=k_{i}&lt;n) $ must represent the number of bags that lie directly in the $ i $ -th bag (the bags that are inside the bags lying in the $ i $ -th bag are not taken into consideration). Next, the line must contain $ k_{i} $ integers — the numbers of the bags that are lying directly in the $ i $ -th bag. The total number of coins in the solution must equal $ s $ . If we count the total number of coins the $ i $ -th bag in the solution has, we should get $ a_{i} $ . No bag can directly lie in more than one bag. The bags can be nested in more than one level (see the second test case). If there are multiple correct answers, you can print any of them.

输入输出样例

输入样例 #1

3 3
1 3 1

输出样例 #1

1 0
1 2 3 1
1 0

输入样例 #2

3 3
1 3 1

输出样例 #2

1 0
2 1 3
0 1 1

输入样例 #3

1 2
1

输出样例 #3

-1

输入样例 #4

8 10
2 7 3 4 1 3 1 2

输出样例 #4

2 0
1 2 1 4
0 2 7 8
0 2 5 6
1 0
3 0
1 0
2 0

说明

The pictures below show two possible ways to solve one test case from the statement. The left picture corresponds to the first test case, the right picture corresponds to the second one. ![](https://cdn.luogu.com.cn/upload/vjudge_pic/CF356D/1307eb982020a5ba55b375c0d5ee7ef3aa5a111f.png)