DCEPC803 - Trip To London

no tags 

Mary and Saina participated in London Olympics 2012 and won medals for India. After these historic moments, they planned to travel and see various places in London. Since it was their first time in the city, they bought a map to various connecting routes across London. However, the map was not proper as it had a missing entry for one route. They asked the tour planning authorities to get the correct map but all they could get was the shortest distance route map rather than the original map which gives direct distance between any 2 places in London. Mary and Saina prefer taking the direct route rather than the shortest route for travelling. Can you help them calculate the number of possible values of direct distance which is unknown in the original map? Assume that the places are never more than 100km apart (i.e. direct distance).

Input

First line contains N, the number of places in London.

Next N lines contains total N^2 integers, N space separated integers per line (the direct distance map). The jth column in the ith line contains either a non-negative integer (the distance from ith place to jth place), or -1 indicating the missing entry in the map.

Next N lines contains total N^2 integers, N space separated integers per line (the shortest distance map). The jth column in the ith line contains a non-negative integer (the shortest distance from ith place to jth place).

Note that direct distance from ith to jth city is not always equal to direct distance between jth to ith city and distance between a city to itself is always 0.

Output

Output the number of possible values the missing entry (marked -1 in the original map) takes assuming that shortest distance map is correct.

Output

2<=N<=20

All distances are between 0 to 100 (including both).

Example

Input:
4
0 51 61 63
-1 0 66 24
80 83 0 71
60 64 52 0
0 51 61 63
84 0 66 24
80 83 0 71
60 64 52 0

Output:
17

hide comments
adze: 2014-01-24 15:36:44

Finally understood what the question is asking.. phew!

Last edit: 2014-01-24 17:23:10
anurag garg: 2014-01-02 12:36:13

easy...

dce coders: 2012-10-07 13:59:58

Test data has been changed and solutions have been rejudged. Some solutions getting WA previously are now AC.


Added by:dce coders
Date:2012-08-19
Time limit:1s
Source limit:50000B
Memory limit:1536MB
Cluster: Cube (Intel G860)
Languages:C C++ 4.3.2 CPP JAVA
Resource:Own Problem