郝20221128


私信TA

用户名:dotcpp0653600

访问量:2404

签 名:

等  级
排  名 469
经  验 4720
参赛次数 16
文章发表 42
年  龄 98
在职情况 教师
学  校 上海邮电大学
专  业 计算机程序开发

  自我简介:

解题思路:

注意事项:
本题较难
参考代码:

#include <stdio.h>
#include <stdlib.h>
#include <math.h>
using namespace std;
int main()
{
int m,n,r,s,max,maxi=0,maxj=0,i,j,k,l, temp=0, **A, **B;
scanf("%d %d", &m, &n);
A = (int**)malloc(sizeof(int*)*m);
for(i=0;i<m;i++)
{
A[i]=(int*)malloc(sizeof(int)*n);
for(j=0;j<n;j++)
{
scanf("%d", &A[i][j]);
}
}
scanf("%d %d", &r, &s);
B = (int**)malloc(sizeof(int*)*r);
for(i=0;i<r;i++)
{
B[i]=(int*)malloc(sizeof(int)*s);
for(j=0;j<s;j++)
{
scanf("%d", &B[i][j]);
}
}
max = r*s*100;
for(k=0;k<=m-r;k++)
{
for(l=0;l<=n-s;l++)
{
temp = 0;
for(i=k;i<k+r;i++)
{
for(j=l;j<l+s;j++)
{
temp += fabs(A[i][j]-B[i-k][j-l]);
}
}
if(temp<max){
max=temp;
maxi=k;
maxj=l;
}
}
}

for(i=maxi;i<maxi+r;i++)
{
for(j=maxj;j<maxj+s;j++)
{
printf("%d ", A[i][j]);
}
printf("\n");
}
return 0;
}


 

0.0分

1 人评分

  评论区

  • «
  • »