给定两个矩阵A和B,要求你计算它们的乘积矩阵AB。需要注意的是,只有规模匹配的矩阵才可以相乘。即若A有R
a
行、C
a
列,B有R
b
行、C
b
列,则只有C
a
与R
b
相等时,两个矩阵才能相乘。
输入格式:
输入先后给出两个矩阵A和B。对于每个矩阵,首先在一行中给出其行数R和列数C,随后R行,每行给出C个整数,以1个空格分隔,且行首尾没有多余的空格。输入保证两个矩阵的R和C都是正数,并且所有整数的绝对值不超过100。
输出格式:
若输入的两个矩阵的规模是匹配的,则按照输入的格式输出乘积矩阵AB,否则输出Error: Ca != Rb,其中Ca是A的列数,Rb是B的行数。
输入样例1:
2 3
1 2 3
4 5 6
3 4
7 8 9 0
-1 -2 -3 -4
5 6 7 8
输出样例1:
2 4
20 22 24 16
53 58 63 28
输入样例2:
3 2
38 26
43 -5
0 17
3 2
-11 57
99 68
81 72
输出样例2:
Error: 2 != 3
#include <iostream>
#include <cstdio>
#include <cstring>
#include <cmath>
#include <iomanip>
#include <algorithm>
#include <map>
#include <set>
#include <queue>
#include <vector>
#define inf 0x3f3f3f3f
using namespace std;
typedef long long ll;
int a1,b1,a2,b2,a[101][101],b[101][101],c[101][101],i,j,k;
int main()
{
cin>>a1>>b1;
for(i=1;i<=a1;i++)
for(j=1;j<=b1;j++)
cin>>a[i][j];
cin>>a2>>b2;
for(i=1;i<=a2;i++)
for(j=1;j<=b2;j++)
cin>>b[i][j];
if(b1!=a2)
{
printf("Error: %d != %d",b1,a2);return 0;
}
for(i=1;i<=a1;i++)
for(j=1;j<=b2;j++)
for(k=1;k<=b1;k++)
c[i][j]+=a[i][k]*b[k][j];
cout<<a1<<" "<<b2<<endl;
for(i=1;i<=a1;i++)
{
for(j=1;j<=b2;j++)
j==b2?printf("%d\n",c[i][j]):printf("%d ",c[i][j]);
}
return 0;
}