CF1517D.Explorer Space

普及/提高-

通过率:0%

AC君温馨提醒

该题目为【codeforces】题库的题目,您提交的代码将被提交至codeforces进行远程评测,并由ACGO抓取测评结果后进行展示。由于远程测评的测评机由其他平台提供,我们无法保证该服务的稳定性,若提交后无反应,请等待一段时间后再进行重试。

题目描述

You are wandering in the explorer space of the 2050 Conference.

The explorer space can be viewed as an undirected weighted grid graph with size n×mn\times m . The set of vertices is {(i,j)1in,1jm}\{(i, j)|1\le i\le n, 1\le j\le m\} . Two vertices (i1,j1)(i_1,j_1) and (i2,j2)(i_2, j_2) are connected by an edge if and only if i1i2+j1j2=1|i_1-i_2|+|j_1-j_2|=1 .

At each step, you can walk to any vertex connected by an edge with your current vertex. On each edge, there are some number of exhibits. Since you already know all the exhibits, whenever you go through an edge containing xx exhibits, your boredness increases by xx .

For each starting vertex (i,j)(i, j) , please answer the following question: What is the minimum possible boredness if you walk from (i,j)(i, j) and go back to it after exactly kk steps?

You can use any edge for multiple times but the boredness on those edges are also counted for multiple times. At each step, you cannot stay on your current vertex. You also cannot change direction while going through an edge. Before going back to your starting vertex (i,j)(i, j) after kk steps, you can visit (i,j)(i, j) (or not) freely.

输入格式

The first line contains three integers nn , mm and kk ( 2n,m500,1k202\leq n, m\leq 500, 1\leq k\leq 20 ).

The jj -th number ( 1jm11\le j \le m - 1 ) in the ii -th line of the following nn lines is the number of exibits on the edge between vertex (i,j)(i, j) and vertex (i,j+1)(i, j+1) .

The jj -th number ( 1jm1\le j\le m ) in the ii -th line of the following n1n-1 lines is the number of exibits on the edge between vertex (i,j)(i, j) and vertex (i+1,j)(i+1, j) .

The number of exhibits on each edge is an integer between 11 and 10610^6 .

输出格式

Output nn lines with mm numbers each. The jj -th number in the ii -th line, answerijanswer_{ij} , should be the minimum possible boredness if you walk from (i,j)(i, j) and go back to it after exactly kk steps.

If you cannot go back to vertex (i,j)(i, j) after exactly kk steps, answerijanswer_{ij} should be 1-1 .

输入输出样例

  • 输入#1

    3 3 10
    1 1
    1 1
    1 1
    1 1 1
    1 1 1

    输出#1

    10 10 10
    10 10 10
    10 10 10
  • 输入#2

    2 2 4
    1
    3
    4 2

    输出#2

    4 4
    10 6
  • 输入#3

    2 2 3
    1
    2
    3 4

    输出#3

    -1 -1
    -1 -1

说明/提示

In the first example, the answer is always 1010 no matter how you walk.

In the second example, answer21=10answer_{21} = 10 , the path is (2,1)(1,1)(1,2)(2,2)(2,1)(2,1) \to (1,1) \to (1,2) \to (2,2) \to (2,1) , the boredness is 4+1+2+3=104 + 1 + 2 + 3 = 10 .

首页