Codeforces Round 839 (Div. 3) |
---|
Finished |
It all started with a black-and-white picture, that can be represented as an $$$n \times m$$$ matrix such that all its elements are either $$$0$$$ or $$$1$$$. The rows are numbered from $$$1$$$ to $$$n$$$, the columns are numbered from $$$1$$$ to $$$m$$$.
Several operations were performed on the picture (possibly, zero), each of one of the two kinds:
Note that the order of operations could be arbitrary, they were not necessarily alternating.
You are presented with the outcome: all $$$k$$$ copies that were made. Additionally, you are given the initial picture. However, all $$$k+1$$$ pictures are shuffled.
Restore the sequence of the operations. If there are multiple answers, print any of them. The tests are constructed from the real sequence of operations, i. e. at least one answer always exists.
The first line contains three integers $$$n, m$$$ and $$$k$$$ ($$$3 \le n, m \le 30$$$; $$$0 \le k \le 100$$$) — the number of rows and columns of the pictures and the number of copies made, respectively.
Then $$$k+1$$$ pictures follow — $$$k$$$ copies and the initial picture. Their order is arbitrary.
Each picture consists of $$$n$$$ lines, each consisting of $$$m$$$ characters, each character is either $$$0$$$ or $$$1$$$. There is an empty line before each picture.
In the first line, print a single integer — the index of the initial picture. The pictures are numbered from $$$1$$$ to $$$k+1$$$ in the order they appear in the input.
In the second line, print a single integer $$$q$$$ — the number of operations.
Each of the next $$$q$$$ lines should contain an operation. The operations should be listed in order they were applied. Each operation is one of two types:
Each index from $$$1$$$ to $$$k+1$$$ should appear in the output exactly once — one of them is the index of the initial picture, the remaining $$$k$$$ are arguments of the operations of the second kind.
If there are multiple answers, print any of them. The tests are constructed from the real sequence of operations, i. e. at least one answer always exists.
3 3 1 010 111 010 010 101 010
2 2 1 2 2 2 1
4 5 3 00000 01000 11100 01000 00000 01000 10100 01000 00000 01010 10100 01000 00000 01000 10100 01000
3 5 1 2 4 2 2 2 4 1 3 2 2 1
5 3 0 110 010 001 011 001
1 0
Name |
---|