spoj#MTHUR. grace marks
grace marks
In earlier days , grading in BITS used to be absolute , instead of relative grading scheme .
Once Professor Mathur decided to conduct a surprise quiz, and many students were caught unaware of it.
Their scores of the students came out to be much worse than the previous years scores.
Professor Mathur really believed that true test of talent comes in difficult situations and continued such horrifying sequences of tests . But finally poor placements of his students turned the heat up for the professor and he decided to revise everyone's marks .
Now being a qualified mathematician , professor mathur applied a simple strategy to this.
He decided to award some constant grace marks to each and every student.
He took every students last year marks and then added up the absolute difference with the
revised current year marks . And he decided to choose the grace marks with the least sum of absolute difference .
ie. sum( abs (a[i] - (b[i]+grace) ) ) should be minimum .
Also , prof. Mathur had a knack of choosing the grace value from his very set of favourite numbers .
Now that our students are happily placed in 'Microsoft' , 'Adobe' for the good , credit finally goes to professor "mathur" .
Now , decide for each input ,what grace marks were given by mathur .
(if there are many such grace marks , choose the lowest one) .
Input
First line , t for number of testcases. Next 5*t line for each testcase .
First line of every testcase : integer n.
Second line : n integers showing previous years marks of every student .
Third line : n integers showing present years marks of every student .
Fourth line : intger m
Fifth line : m integers showing the possible values for grace marks
Output
Output the expected grace marks .
Example
Input: 1
5
9 10 7 3 10
4 1 4 1 3
6
0 1 2 3 4 5
Output: 5
contraints :
number of testcases , t < 20
maximum number of students : n < 10000
1 <= m,marks[i] <= 50000