#P12945. [NERC 2019] Lexicography

    ID: 12741 Type: RemoteJudge 3000ms 512MiB Tried: 0 Accepted: 0 Difficulty: 4 Uploaded By: Tags>2019Special JudgeICPCNERC/NEERC

[NERC 2019] Lexicography

题目描述

Lucy likes letters. She studied the definition of the lexicographical order at school and plays with it.

At first, she tried to construct the lexicographically smallest word out of given letters. It was so easy! Then she tried to build multiple words and minimize one of them. This was much harder!

Formally, Lucy wants to make nn words of length ll each out of the given nln \cdot l letters, so that the kk-th of them in the lexicographic order is lexicographically as small as possible.

输入格式

The first line contains three integers nn, ll, and kk (1kn10001\le k \le n \le 1\,000; 1l10001 \le l \le 1\,000) --- the total number of words, the length of each word, and the index of the word Lucy wants to minimize.

The next line contains a string of nln \cdot l lowercase letters of the English alphabet.

输出格式

Output nn words of ll letters each, one per line, using the letters from the input. Words must be sorted in the lexicographic order, and the kk-th of them must be lexicographically as small as possible. If there are multiple answers with the smallest kk-th word, output any of them.

3 2 2
abcdef
af
bc
ed
2 3 1
abcabc
aab
bcc