题库练习 Serval and Toy Bricks
← 上一题 下一题 →

A12483 | Serval and Toy Bricks

时间限制1s
内存限制256MB
通过 / 提交0/0

题目描述

Luckily, Serval got onto the right bus, and he came to the kindergarten on time. After coming to kindergarten, he found the toy bricks very funny.

He has a special interest to create difficult problems for others to solve. This time, with many $1 \times 1 \times 1$ toy bricks, he builds up a 3-dimensional object. We can describe this object with a $n \times m$ matrix, such that in each cell $(i,j)$ , there are $h_{i,j}$ bricks standing on the top of each other.

However, Serval doesn't give you any $h_{i,j}$ , and just give you the front view, left view, and the top view of this object, and he is now asking you to restore the object. Note that in the front view, there are $m$ columns, and in the $i$ -th of them, the height is the maximum of $h_{1,i},h_{2,i},\dots,h_{n,i}$ . It is similar for the left view, where there are $n$ columns. And in the top view, there is an $n \times m$ matrix $t_{i,j}$ , where $t_{i,j}$ is $0$ or $1$ . If $t_{i,j}$ equals $1$ , that means $h_{i,j}>0$ , otherwise, $h_{i,j}=0$ .

However, Serval is very lonely because others are bored about his unsolvable problems before, and refused to solve this one, although this time he promises there will be at least one object satisfying all the views. As his best friend, can you have a try?

输入格式

The first line contains three positive space-separated integers $n, m, h$ ( $1\leq n, m, h \leq 100$ ) — the length, width and height.

The second line contains $m$ non-negative space-separated integers $a_1,a_2,\dots,a_m$ , where $a_i$ is the height in the $i$ -th column from left to right of the front view ( $0\leq a_i \leq h$ ).

The third line contains $n$ non-negative space-separated integers $b_1,b_2,\dots,b_n$ ( $0\leq b_j \leq h$ ), where $b_j$ is the height in the $j$ -th column from left to right of the left view.

Each of the following $n$ lines contains $m$ numbers, each is $0$ or $1$ , representing the top view, where $j$ -th number of $i$ -th row is $1$ if $h_{i, j}>0$ , and $0$ otherwise.

It is guaranteed that there is at least one structure satisfying the input.

输出格式

Output $n$ lines, each of them contains $m$ integers, the $j$ -th number in the $i$ -th line should be equal to the height in the corresponding position of the top view. If there are several objects satisfying the views, output any one of them.

输入输出样例

输入 #1
3 7 3
2 3 0 0 2 0 1
2 1 3
1 0 0 0 1 0 0
0 0 0 0 0 0 1
1 1 0 0 0 0 0
输出 #1
1 0 0 0 2 0 0
0 0 0 0 0 0 1
2 3 0 0 0 0 0
输入 #2
4 5 5
3 5 2 0 4
4 2 5 4
0 0 0 0 1
1 0 1 0 0
0 1 0 0 0
1 1 1 0 0
输出 #2
0 0 0 0 4
1 0 2 0 0
0 5 0 0 0
3 4 1 0 0
C++ 编辑器
输入
输出