CF44E.Anfisa the Monkey

普及/提高-

通过率:0%

AC君温馨提醒

该题目为【codeforces】题库的题目,您提交的代码将被提交至codeforces进行远程评测,并由ACGO抓取测评结果后进行展示。由于远程测评的测评机由其他平台提供,我们无法保证该服务的稳定性,若提交后无反应,请等待一段时间后再进行重试。

题目描述

Anfisa the monkey learns to type. She is yet unfamiliar with the "space" key and can only type in lower-case Latin letters. Having typed for a fairly long line, Anfisa understood that it would be great to divide what she has written into kk lines not shorter than aa and not longer than bb , for the text to resemble human speech more. Help Anfisa.

输入格式

The first line contains three integers kk , aa and bb ( 1<=k<=2001<=k<=200 , 1<=a<=b<=2001<=a<=b<=200 ). The second line contains a sequence of lowercase Latin letters — the text typed by Anfisa. It is guaranteed that the given line is not empty and its length does not exceed 200200 symbols.

输出格式

Print kk lines, each of which contains no less than aa and no more than bb symbols — Anfisa's text divided into lines. It is not allowed to perform any changes in the text, such as: deleting or adding symbols, changing their order, etc. If the solution is not unique, print any of them. If there is no solution, print "No solution" (without quotes).

输入输出样例

  • 输入#1

    3 2 5
    abrakadabra
    

    输出#1

    ab
    rakad
    abra
    
  • 输入#2

    4 1 2
    abrakadabra
    

    输出#2

    No solution
    
首页