這是一道模板題。ios
分別給定 n×p p×m 的兩個矩陣 A 和 B,求 A×B 。ide
第一行三個正整數 n p m ,表示矩陣的長寬。
以後的 n 行,每行 p 個整數,表示矩陣 A 。
以後的 p 行,每行 m 個整數,表示矩陣 B 。 ui
輸出 n 行,每行 m 個整數,表示矩陣 A×B ,每一個數模 10 ^ 9 + 7 輸出。spa
3 4 5 -2 -8 -9 8 -10 0 6 -8 -10 -6 6 9 4 -7 5 -5 9 10 -2 -10 5 5 -3 -7 -3 8 -2 -6 7 7 3 -2
999999898 149 153 999999929 999999951 999999997 999999979 999999883 74 999999921 999999835 103 55 95 999999857
1≤n,p,m≤500, −109≤Ai,j,Bi,j≤109 code
注意題目裏面的數全是正整數,故最終答案也是正整數blog
#include<iostream> using namespace std; const long long MOD = 1e9 + 7; const int MAXN = (int)5e2 + 10; long long a[MAXN][MAXN], b[MAXN][MAXN],res[MAXN][MAXN]; int n, p, m; void solve(){ for (int i = 0; i < n; i++){ for (int j = 0; j < m; j++){ res[i][j] = 0; for (int k = 0; k < p; k++) res[i][j] += a[i][k] * b[k][j] % MOD; long long ans = res[i][j] % MOD; if (ans < 0) ans += MOD; cout << ans << ' '; } cout << endl; } } int main() { ios::sync_with_stdio(false); cin >> n >> p >> m; for (int i = 0; i < n; i++) for (int j = 0; j < p; j++) cin >> a[i][j]; for (int i = 0; i < p; i++) for (int j = 0; j < m; j++) cin >> b[i][j]; solve(); return 0; }