mirror of
https://git.sb/baoshuo/OI-codes.git
synced 2024-11-05 13:38:47 +00:00
70 lines
1.1 KiB
C++
70 lines
1.1 KiB
C++
#include <cstring>
|
|
#include <iostream>
|
|
|
|
using std::cin;
|
|
using std::cout;
|
|
const char endl = '\n';
|
|
|
|
const int N = 105;
|
|
|
|
int n, m, p;
|
|
|
|
class Matrix {
|
|
private:
|
|
int data[N][N];
|
|
|
|
public:
|
|
Matrix() {
|
|
memset(data, 0x00, sizeof(data));
|
|
}
|
|
|
|
int* operator[](int i) {
|
|
return data[i];
|
|
}
|
|
|
|
Matrix operator*(Matrix b) const {
|
|
Matrix c;
|
|
|
|
for (int i = 1; i <= n; i++) {
|
|
for (int j = 1; j <= p; j++) {
|
|
for (int k = 1; k <= m; k++) {
|
|
c[i][j] += data[i][k] * b[k][j];
|
|
}
|
|
}
|
|
}
|
|
|
|
return c;
|
|
}
|
|
} a, b, c;
|
|
|
|
int main() {
|
|
std::ios::sync_with_stdio(false);
|
|
|
|
cin >> n >> m;
|
|
|
|
for (int i = 1; i <= n; i++) {
|
|
for (int j = 1; j <= m; j++) {
|
|
cin >> a[i][j];
|
|
}
|
|
}
|
|
|
|
cin >> p;
|
|
|
|
for (int i = 1; i <= m; i++) {
|
|
for (int j = 1; j <= p; j++) {
|
|
cin >> b[i][j];
|
|
}
|
|
}
|
|
|
|
c = a * b;
|
|
|
|
for (int i = 1; i <= n; i++) {
|
|
for (int j = 1; j <= p; j++) {
|
|
cout << c[i][j] << ' ';
|
|
}
|
|
cout << endl;
|
|
}
|
|
|
|
return 0;
|
|
}
|