FISHER - Fishmonger

A FishmongerA fishmonger wants to bring his goods from the port to the market. On his route he has to traverse an area with many tiny city states. Of course he has to pay a toll at each border.

Because he is a good business man, he wants to choose the route in such a way that he has to pay as little money for tolls as possible. On the other hand, he has to be at the market within a certain time, otherwise his fish start to smell.

Input

The first line contains the number of states n and available time t. The first state is the port, the last state is the market. After this line there are n lines with n numbers each, specifying for each state the travel time to the i-th state. This table is terminated with an empty line. The table of the tolls follows in the same format.

n is at least 3 and at most 50. The time available is less than 1000. All numbers are integers.

There are many test cases separated by an empty line. Input terminates with number of states and time equal 0 0.

Output

For each test case your program should print on one line the total amount of tolls followed by the actual travelling time.

Example

Sample input:
4 7
0 5 2 3
5 0 2 3
3 1 0 2
3 3 2 0

0 2 2 7
2 0 1 2
2 2 0 5
7 2 5 0

0 0

Sample output:
6 6

This corresponds to the following situation, the connections are labeled with (time, toll):


Added by:MichaƂ Czuczman
Date:2004-07-07
Time limit:3s
Source limit:50000B
Memory limit:1536MB
Cluster: Cube (Intel G860)
Languages:All
Resource:Swiss Olympiad in Informatics 2004

hide comments
2015-11-10 15:55:40 Siddharth Singh
why is 3 7 not the answer ???
2015-11-08 09:22:25 :.Mohib.:
Beautiful :)

Last edit: 2015-11-08 14:57:21
2015-10-06 20:36:39
getting WA..can't find the problem with my code...please help..my code : http://ideone.com/f0Vrxk
2015-08-17 10:44:56 SangKuan
do not understand this problem...
2015-06-23 07:43:49 Pagan Min
AC in one go with simple knapsack!!
2015-06-15 17:51:00 Shubham
finally ac....tried lot with DFS but couldnt reduce Time limit...then ultimately did with Dijkstra :)
2015-05-31 18:55:55 ksidd
first time AC in one go....:)
2015-05-16 13:30:54 Tim Wargon
what a horrible way to explain a problem !
2015-01-31 17:16:31 bazuga
Any edge cases?
2015-01-19 14:05:13 krish
recursive dfs.That's it:)
© Spoj.com. All Rights Reserved. Spoj uses Sphere Engine™ © by Sphere Research Labs.