CF--Beauty Pageant--思维

C. Beauty Pageant

time limit per test

2 seconds

memory limit per test

256 megabytes

input

standard input

output

standard output

General Payne has a battalion of n soldiers. The soldiers' beauty contest is coming up, it will last for k days. Payne decided that his battalion will participate in the pageant. Now he has choose the participants.

All soldiers in the battalion have different beauty that is represented by a positive integer. The value ai represents the beauty of the i-th soldier.

On each of k days Generals has to send a detachment of soldiers to the pageant. The beauty of the detachment is the sum of the beauties of the soldiers, who are part of this detachment. Payne wants to surprise the jury of the beauty pageant, so each of k days the beauty of the sent detachment should be unique. In other words, all k beauties of the sent detachments must be distinct numbers.

Help Payne choose k detachments of different beauties for the pageant. Please note that Payne cannot just forget to send soldiers on one day, that is, the detachment of soldiers he sends to the pageant should never be empty.

Input

The first line contains two integers nk (1 ≤ n ≤ 50; 1 ≤ k ≤   ) — the number of soldiers and the number of days in the pageant, correspondingly. The second line contains space-separated integers a1, a2, ..., an (1 ≤ ai ≤ 107) — the beauties of the battalion soldiers.

It is guaranteed that Payne's battalion doesn't have two soldiers with the same beauty.

Output

Print k lines: in the i-th line print the description of the detachment that will participate in the pageant on the i-th day. The description consists of integer ci (1 ≤ ci ≤ n) — the number of soldiers in the detachment on the i-th day of the pageant and ci distinct integers p1, i, p2, i, ..., pci, i — the beauties of the soldiers in the detachment on the i-th day of the pageant. The beauties of the soldiers are allowed to print in any order.

Separate numbers on the lines by spaces. It is guaranteed that there is the solution that meets the problem conditions. If there are multiple solutions, print any of them.

Examples

input

Copy

3 3
1 2 3

output

Copy

1 1
1 2
2 3 2

input

Copy

2 1
7 12

output

Copy

1 12 

m<=n*(n+1)/2

长度为1的选n个,为2的选n-1个,每次从最大开始,一共可以选出n*(n+1)/2个满足条件的数。

#include<bits/stdc++.h>
using namespace std;
#define ll long long
const int maxn=100+66;
const ll mod=1e9+7;
int n,m,h,t;
int a[maxn];
struct node
{
    int x;
    int id;
} b[maxn];
map<int,int>mmp;
int num=0;
int flag=0;
bool cmp(int a,int b)
{
    return a>b;
}
int main()
{
    mmp.clear();
    scanf("%d %d",&n,&m);
    for(int i=1; i<=n; i++)
    {
        scanf("%d",&a[i]);
        //b[i].id=i;
    }
    sort(a+1,a+n+1,cmp);
    int len=0;
    int num=0;
    while(1)
    {
        len+=1;//长度
        for(int i=len; i<=n; i++)
        {
            printf("%d ",len);
            for(int j=1; j<len; j++)
            {
                printf("%d ",a[j]);
            }
            printf("%d\n",a[i]);//
            num++;
            if(num==m)return 0;
        }
    }
    return 0;
}

 

上一篇:[Luogu] P3047 [USACO12FEB]Nearby Cows G


下一篇:「CEOI2020」春季大扫除 题解