Context Advertising

Advertising has become part of our routine. And now, in the era of progressive technologies, we need your ideas to make advertising better!

In this problem we’ll look at a simplified version of context advertising. You’ve got a text, consisting of exactly n words. A standard advertising banner has exactly r lines, each line can contain at most c characters. The potential customer always likes it when they can see lots of advertising, so you should determine which maximum number of consecutive words from the text can be written on the banner. Single words in one line of the banner should be separated by spaces. You are allowed to insert more than one space at once. Note that you are not allowed to break the words, that is, each word in the text must occupy exactly one line in the banner. Besides, you cannot change the word order, that is, if you read the banner text consecutively, from top to bottom and from left to right, you should get some consecutive part of the advertisement text.

More formally, the statement can be written like that. Let’s say that all words are indexed from 1 to n in the order in which they occur in the advertisement text. Then you have to choose all words, starting from some i-th one and ending with some j-th one (1 ≤ i ≤ j ≤ n), so that all of them could be written on the banner. There must be as many words as possible. See the samples for clarifications.

Input

The first input line contains three integers nrc (1 ≤ n, r, c ≤ 106r × c ≤ 106). The next line contains a text, consisting of n words. The words consist only of lowercase English letters and are not empty. The words in the lines are separated by single spaces. The total number of characters in all words doesn’t exceed 5·106.

Output

Print at most r lines, in each line print at most c characters — the optimal advertisement banner. If there are multiple advertisement banners, print any of them.

Note that some lines of the banner can be empty. You are allowed not to print such lines.

Examples

input

9 4 12
this is a sample text for croc final round

output

this is a
sample text
for croc
final round

input

9 1 9
this is a sample text for croc final round

output

this is a

input

6 2 3
croc a a a croc a

output

a a
a

input

2 2 5
first second

output

first

Solution:

#include <cstring>
#include <vector>
#include <list>
#include <map>
#include <set>
#include <deque>
#include <stack>
#include <bitset>
#include <algorithm>
#include <functional>
#include <numeric>
#include <utility>
#include <sstream>
#include <iostream>
#include <iomanip>
#include <cstdio>
#include <cmath>
#include <cstdlib>
#include <ctime>

using namespace std;

const int N = 2222222;

char s[11111111];
int st[N], fin[N], len[N], get[N], nget[N], nx[N];

int main() {
int n, r, c;
scanf("%d %d %d", &n, &r, &c);
c++;
int total = 0;
for (int i=0;i<n;i++) {
    char ch = getchar();
    while (ch < 'a' || ch > 'z') ch = getchar();
len[i] = 1;
st[i] = total;
while (ch >= 'a' && ch <= 'z') {
      s[total++] = ch;
      len[i]++;
      ch = getchar();
    }
    fin[i] = total;
  }
  int j = n, sum = 0;
  nx[n] = n;
  for (int i=n-1;i>=0;i--) {
sum += len[i];
while (sum > c) {
j--;
sum -= len[j];
}
nx[i] = j;
}
for (int i=0;i<=n;i++) get[i] = i;
  int step = 1 << 30;
  while (step > r) step >>= 1;
while (step > 0) {
for (int i=0;i<=n;i++) nget[i] = get[get[i]];
    for (int i=0;i<=n;i++) get[i] = nget[i];
    if (step & r) {
      for (int i=0;i<=n;i++) nget[i] = nx[get[i]];
      for (int i=0;i<=n;i++) get[i] = nget[i];
    }
    step >>= 1;
}
int ans = -1, km = -1;
for (int i=0;i<n;i++)
    if (get[i]-i > ans) {
ans = get[i]-i;
km = i;
}
sum = 0;
for (int i=km;i<km+ans;i++) {
    if (sum+len[i] > c) {
printf("\n");
sum = 0;
}
if (sum > 0) putchar(' ');
for (int j=st[i];j<fin[i];j++) putchar(s[j]);
    sum += len[i];
  }
  printf("\n");
  return 0;
}