Preparando MOJI

Context Advertising

2000ms 262144K

Description:

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 n, r, c (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.

Sample Input:

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

Sample Output:

this is a
sample text
for croc
final round

Sample Input:

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

Sample Output:

this is a

Sample Input:

6 2 3
croc a a a croc a

Sample Output:

a a
a

Sample Input:

2 2 5
first second

Sample Output:

first

Informação

Codeforces

Provedor Codeforces

Código CF309B

Tags

dptwo pointers

Submetido 0

BOUA! 0

Taxa de BOUA's 0%

Datas 09/05/2023 08:44:09

Relacionados

Nada ainda