In the event of technical difficulties with Szkopuł, please contact us via email at [email protected].
If you would like to talk about tasks, solutions or technical problems, please visit our Discord servers. They are moderated by the community, but members of the support team are also active there.
Little Edna has received the take-out game as a present. Take-out is a single player game, in which the player is given a sequence of adjacent blocks, numbered from to . Each block is either black or white, and there are times as many white blocks as there are black ones.
The player's goal is to remove all the blocks by certain permissible moves.
A single move consists in removing exactly white blocks and a single black block without changing the positions of other blocks. The move is permissible if there is no "gap" (a space left by a previously taken out block) between any two blocks being removed.
Help poor little Edna in finding any sequence of permissible moves that remove all the blocks.
In the first line of the standard input there are two integers, and (, ), separated by a single space, that denote the total number of blocks used in the game, and the number of white blocks per black node (to be removed in every move). In all the tests the condition holds.
In the second line there is a string of letters b or c. These tell the colours of successive blocks (in Polish): b (for biały) - white, c (for czarny) - black. You may assume that in all the tests there exists a sequence of permissible moves that takes out all the blocks.
In tests worth 40% of all points there holds an additional condition .
Your program should print lines to the standard output. Successive lines should describe successive moves. Each line should contain integers, in increasing order, separated by single spaces, that denote the numbers of blocks to be removed in the move.
For the input data:
12 2 ccbcbbbbbbcb
the correct result is:
1 8 12 2 6 7 3 4 5 9 10 11
Explanation of the example: Let denote the empty space after a block that was taken out (the gap). By executing the sequence of moves given above, we obtain the following configurations of blocks, in this order: Wykonując podane powyżej ruchy, uzyskujemy kolejno następujące układy klocków:
Task authors: Jakub Pachocki, Wojciech Rytter.
<Submit a solution> [0/100]