408890: GYM103372 E Flowerbed Redecoration
Description
Joon-Pyo decorated a flowerbed in front of his home. The flowerbed is in the shape of an $$$n \times m$$$ grid, and one flower is planted in each cell. There are 26 colors, one corresponding to each uppercase letter from A to Z. Suddenly, he wanted to redecorate the flowerbed.
- Place the equipment so that exactly the flowers in the first $$$d$$$ rows and the first $$$d$$$ columns are inside.
- Rotate the $$$d \times d$$$ square inside the equipment $$$90^\circ$$$ clockwise. If this square contains flowers from the last $$$d$$$ rows and the last $$$d$$$ columns, then the construction is finished. Otherwise, if this square does not contain flowers in the last $$$d$$$ columns, move the equipment $$$x$$$ squares to the right. Otherwise, move the equipment down by $$$y$$$ squares and all the way to the left so it contains flowers from the first $$$d$$$ columns.
- Repeat step 2 until construction is finished.
Note that the equipment will never go out of the flowerbed, as $$$x$$$, $$$y$$$, and $$$d$$$ are carefully determined before construction begins.
He cannot start construction without knowing the outcome. Write a program that outputs the result.
InputOn the first line, five integers $$$n$$$, $$$m$$$, $$$y$$$, $$$x$$$, and $$$d$$$ are given. ($$$1 \leq n \times m \leq 10^6 $$$, $$$ 1 \leq y \leq n$$$, $$$ 1 \leq x \leq m $$$, $$$ 1 \leq d \leq \min(n, m)$$$, $$$\boldsymbol{n \equiv d \pmod y}$$$, $$$\boldsymbol{m \equiv d \pmod x}$$$).
Each of the next $$$n$$$ lines contains exactly $$$m$$$ uppercase letters, the current flowerbed.
OutputOutput $$$n$$$ lines, each containing $$$m$$$ uppercase letters, the flowerbed after the planned construction.
ExamplesInput4 4 1 1 2 AAAA BBBB AAAA BBBBOutput
BAAA ABBB BAAA BBBAInput
6 5 1 2 3 RBRCY YBPBR PBRCY CYPBR PBRCY CYPBROutput
PYRBR CRCBB PPBPY CRCYB YRBCY PYRBR