您的位置:首页 > 移动开发 > IOS开发

Codeforces Round #141 (Div. 2)

2014-03-31 19:42 225 查看
题目链接

B. Two Tables

time limit per test
2 seconds

memory limit per test
256 megabytes

input
standard input

output
standard output

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.

Input

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".

Output

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.

Sample test(s)

input
3 2
01
10
00
2 3
001
111


output
0 1


input
3 3
000
010
000
1 1
1


output
-1 -1


题意:求x和y使得

最大。


由于数据非常小,直接暴力就行。

代码:

#include<iostream>
#include<algorithm>
#include<cstring>
#include<cmath>
#include<cstdio>
using namespace std;
char aa[55][55],bb[55][55];
int a[55][55],b[55][55];
int na,ma,nb,mb,x,y,i,j,k,xx,yy;
int main()
{
cin>>na>>ma;
for(i=0;i<na;i++)
{
scanf("%s",aa[i]);
for(j=0;j<ma;j++)
{
a[i+1][j+1]=aa[i][j]-'0';
}
}
cin>>nb>>mb;
for(i=0;i<nb;i++)
{
scanf("%s",bb[i]);
for(j=0;j<mb;j++)
{ b[i+1][j+1]=bb[i][j]-'0';//cout<<b[i+1][j+1]<<" ";
}
}
int sum=0,ans=0,xx=-nb,yy=-mb,nn,mm;
for(x=-na;x<=nb;x++)
for(y=-ma;y<=mb;y++)
{
for(i=1;i<=na;i++)
for(j=1;j<=ma;j++)
{
nn=i+x;mm=j+y;
if(nn>0&&nn<=nb&&mm>0&&mm<=mb&&a[i][j]==1&&b[nn][mm]==1)
sum++;
}

if(ans<sum)
{ ans=sum;xx=x;yy=y;
//cout<<ans<<"**"<<xx<<"**"<<yy<<endl;
}
sum=0;
}
printf("%d %d\n",xx,yy);
return 0;
}
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签:  codeforces ACM iostream cf