CF62E.World Evil

普及/提高-

通过率:0%

AC君温馨提醒

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

题目描述

As a result of Pinky and Brain's mysterious experiments in the Large Hadron Collider some portals or black holes opened to the parallel dimension. And the World Evil has crept to the veil between their world and ours. Brain quickly evaluated the situation and he understood that the more evil tentacles creep out and become free, the higher is the possibility that Brain will rule the world.

The collider's constriction is a rectangular grid rolled into a cylinder and consisting of nn rows and mm columns such as is shown in the picture below:

In this example n=4n=4 , m=5m=5 . Dotted lines are corridores that close each column to a ring, i. e. connect the nn -th and the 11 -th rows of the grid.

In the leftmost column of the grid the portals are situated and the tentacles of the World Evil are ready to creep out from there. In the rightmost column the exit doors are located. The tentacles can only get out through those doors. The segments joining the nodes of the grid are corridors.

Brain would be glad to let all the tentacles out but he faces a problem: the infinite number of tentacles can creep out of the portals, every tentacle possesses infinite length and some width and the volume of the corridors are, unfortunately, quite limited. Brain could approximately evaluate the maximal number of tentacles that will be able to crawl through every corridor.

Now help the mice to determine the maximal number of tentacles of the World Evil that will crawl out of the Large Hadron Collider.

输入格式

The first line of the input file contains two integers nn and mm ( 2<=n<=52<=n<=5 , 2<=m<=1052<=m<=10^{5} ). They are the sizes of the Large Hadron Collider grid. The next m1m-1 lines contain nn numbers each. They are the horizontal corridors' capacities. The next mm lines contain nn numbers each. They are the vertical corridors' capacities. Corridors are described from left to right and from top to bottom. Every nn -th vertical corridor connects nodes of the nn -th and 11 -th rows. A corridor's capacity is a non-negative integer that does not exceed 10910^{9} .

输出格式

Print a single number, the number of the World Evil tentacles Pinky and Brain will command.

Please, do not use %lld specificator to read or write 64-bit integers in C++. It is preffered to use cout (also you may use %I64d).

输入输出样例

  • 输入#1

    3 4
    4 4 4
    1 1 5
    5 5 3
    4 1 2
    1 3 1
    3 5 4
    1 4 3
    

    输出#1

    7
    
  • 输入#2

    2 2
    9 2
    2 3
    6 1
    

    输出#2

    11
    
首页