刚做一会儿就断网了,好坑爹。

现在A了2题。

###A. Is your horseshoe on the other hoof?

就是一个人要有四种颜色的鞋,然后给你现有的鞋的颜色,求最少还要多少鞋O_o

###B. Two Tables

给两个矩阵,定义一个运算∑ ai,j * bi+x,i+y,同时规定1 ≤ i ≤ na, 1 ≤ j ≤ ma, 1 ≤ i + x ≤ nb, 1 ≤ j + y ≤ mb。

求x, y为何值时,运算的值最大。

暴力模拟一遍就行,本来以为过不了了= =。

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
//By Brickgao
#include <iostream>
#include <cstdio>
#include <cstring>
#include <cmath>
#include <cstdlib>
#include <algorithm>
#include <vector>
using namespace std;

int a[110][110], b[110][110];
int na, ma, nb, mb;

int make(int x, int y)
{
int ans = 0;
for(int i = 1; i <= na; i++)
for(int j = 1; j <= ma; j++)
{
if(i + x > 0 && j + y > 0)
{
ans += a[i][j] * b[i + x][j + y];
}
}
return ans;
}

int main()
{
int recx, recy, max = -1;
char ch;
int mmax, nmax;
cin >> na >> ma;
for(int i = 1; i <= na; i++)
{
getchar();
for(int j = 1; j <= ma; j++)
{
ch = getchar();
a[i][j] = (int)ch - 48;
}
}
cin >> nb >> mb;
for(int i = 1; i <= nb; i++)
{
getchar();
for(int j = 1; j <= mb; j++)
{
ch = getchar();
b[i][j] = (int)ch - 48;
}
}
if(ma > mb) mmax = ma; else mmax = mb;
if(na > nb) nmax = na; else nmax = nb;
for(int i = 1 - nmax; i <= nmax - 1; i++)
for(int j = 1 - mmax; j <= mmax - 1; j++)
{
int tmp = make(i, j);
if(tmp > max)
{
recx = i;
recy = j;
max = tmp;
}
}
printf("%d %d\n", recx, recy);
return 0;
}