CF228B.Two Tables
普及/提高-
通过率:0%
AC君温馨提醒
该题目为【codeforces】题库的题目,您提交的代码将被提交至codeforces进行远程评测,并由ACGO抓取测评结果后进行展示。由于远程测评的测评机由其他平台提供,我们无法保证该服务的稳定性,若提交后无反应,请等待一段时间后再进行重试。
题目描述
You've got two rectangular tables with sizes na×ma and nb×mb cells. The tables consist of zeroes and ones. We will consider the rows and columns of both tables indexed starting from 1. Then we will define the element of the first table, located at the intersection of the i -th row and the j -th column, as ai,j ; we will define the element of the second table, located at the intersection of the i -th row and the j -th column, as bi,j .
We will call the pair of integers (x,y) a shift of the second table relative to the first one. We'll call the overlap factor of the shift (x,y) value:
where the variables i,j take only such values, in which the expression ai,j⋅bi+x,j+y makes sense. More formally, inequalities 1<=i<=na,1<=j<=ma,1<=i+x<=nb,1<=j+y<=mb must hold. If there are no values of variables i,j , that satisfy the given inequalities, the value of the sum is considered equal to 0.
Your task is to find the shift with the maximum overlap factor among all possible shifts.
输入格式
The first line contains two space-separated integers na,ma (1<=na,ma<=50) — the number of rows and columns in the first table. Then na lines contain ma characters each — the elements of the first table. Each character is either a "0", or a "1".
The next line contains two space-separated integers nb,mb (1<=nb,mb<=50) — the number of rows and columns in the second table. Then follow the elements of the second table in the format, similar to the first table.
It is guaranteed that the first table has at least one number "1". It is guaranteed that the second table has at least one number "1".
输出格式
Print two space-separated integers x,y (∣x∣,∣y∣<=109) — a shift with maximum overlap factor. If there are multiple solutions, print any of them.
输入输出样例
输入#1
3 2 01 10 00 2 3 001 111
输出#1
0 1
输入#2
3 3 000 010 000 1 1 1
输出#2
-1 -1