printРабочее место участника

printЗадачи

1627. Painting

Ограничения: время – 4s/8s, память – 128MiB Ввод: input.txt или стандартный ввод Вывод: output.txt или стандартный вывод copy
Послать решение Blockly Посылки Темы Где Обсудить (0)

Mirko has just installed a brand new drawing program. The program supports `K` different colours, denoted by integers from 1 to `K`. All drawing is performed on a canvas with dimensions `"NxN"`. In the beginning, all cells are white (denoted by 1).
The upper left cell of the canvas has coordinates (0, 0). The first coordinate, `x`, increases iterating over rows, and the second, `y`, increases iterating over columns.
Mirko’s favourite pastime is drawing rectangular checkerboard patterns using the command PAINT c x1 y1 x2 y2, where c denotes the chosen colour, and (x1, y1) and (x2, y2) are coordinates of the upper left and lower right cells, respectively, of the rectangle being painted. The upper left cell of the rectangle will be painted in the chosen colour, while the rest are determined by the checkerboard pattern. Cells that are not painted over by the chosen colour will retain their previous colour.
For example, a white canvas painted over by a red checkerboard pattern will look like this:

14975.png

Mirko has recently discovered two additional commands. He can save his painting at any time using the creatively named command SAVE, and load it again later using the command LOAD x, where x is a positive integer representing the ordinal number of the save.
Unfortunately, the program has crashed and Mirko’s painting is lost forever. Luckily, Mirko has saved a log of all used commands. Can you help Mirko by reconstructing the lost painting?
Input
The first line of input contains three positive integers, `N` (`1\ ≤\ N\ ≤\ 1000`), `K` (`2\ ≤\ K\ ≤\ 100000`), and `M` (`1\ ≤\ M\ ≤\ 100000`, `M` is the number of commands).
Each of the following `M` lines contains one of the three described commands. Input will not contain any illegal commands.
Output:
Output must consist of `N` lines, each containing `N` integers representing the colours of cells in the corresponding row of the painting.

Sample Input 1

4 3 2
PAINT 2 0 0 3 3
PAINT 3 0 3 3 3

Sample Output 1

2 1 2 3
1 2 1 2
2 1 2 3
1 2 1 2

Sample Input 2

3 3 4
PAINT 3 0 0 1 1
SAVE
PAINT 2 1 1 2 2
LOAD 1

Sample Output 2

3 1 1
1 3 1
1 1 1

Sample Input 3

3 4 7
PAINT 2 0 0 1 1
SAVE
PAINT 3 1 1 2 2
SAVE
PAINT 4 0 2 0 2
LOAD 2
PAINT 4 2 0 2 0

Sample Output 3

2 1 1
1 3 1
4 1 3
Source: COCI 2010/2011, contest #5
loading