线代课上还教过这个公式(AB)^n=A*(BA)^(n-1)^B。。。可以用这个公式优化不然
计算出C=A*B是个很大的矩阵再进行求幂,复杂度会非常高。
代码:
#include<bits/stdc++.h>
using namespace std;
const int maxn = 1005;
int ans[maxn][maxn], res[maxn][maxn], a[maxn][maxn], b[maxn][maxn], n, k;
struct node
{
int s[7][7];
}ba;
node mul(node a, node b)
{
node t;
memset(t.s, 0, sizeof(t.s));
for(int i = 0; i < k; i++)
for(int j = 0; j < k; j++)
for(int u = 0; u < k; u++)
t.s[i][j] = (t.s[i][j]+a.s[i][u]*b.s[u][j])%6;
return t;
}
node mt_pow(node p, int m)
{
node q;
memset(q.s, 0, sizeof(q.s));
for(int i = 0; i < k; i++)
q.s[i][i] = 1;
while(m)
{
if(m&1) q = mul(q, p);
p = mul(p, p);
m /= 2;
}
return q;
}
int main(void)
{
//freopen("in.txt", "r", stdin);
while(cin >> n >> k, n+k)
{
for(int i = 0; i < n; i++)
for(int j = 0; j < k; j++)
scanf("%d", &a[i][j]);
for(int i = 0; i < k; i++)
for(int j = 0; j < n; j++)
scanf("%d", &b[i][j]);
node ba;
memset(ba.s, 0, sizeof(ba.s));
for(int i = 0; i < k; i++)
for(int j = 0; j < k; j++)
for(int u = 0; u < n; u++)
ba.s[i][j] += b[i][u]*a[u][j];
node temp = mt_pow(ba, n*n-1);
memset(ans, 0, sizeof(ans));
for(int i = 0; i < n; i++)
for(int j = 0; j < k; j++)
for(int u = 0; u < k; u++)
ans[i][j] = (ans[i][j]+a[i][u]*temp.s[u][j])%6;
memset(res, 0, sizeof(res));
for(int i = 0; i < n; i++)
for(int j = 0; j < n; j++)
for(int u = 0; u < k; u++)
res[i][j] = (res[i][j]+ans[i][u]*b[u][j])%6;
int sum = 0;
for(int i = 0; i < n; i++)
for(int j = 0; j < n; j++)
sum += res[i][j];
printf("%d\n", sum);
}
return 0;
}
Fast Matrix Calculation
Time Limit: 2000/1000 MS (Java/Others) Memory Limit: 131072/131072 K (Java/Others)Total Submission(s): 1498 Accepted Submission(s): 707
Problem Description
One day, Alice and Bob felt bored again, Bob knows Alice is a girl who loves math and is just learning something about matrix, so he decided to make a crazy problem for her.
Bob has a six-faced dice which has numbers 0, 1, 2, 3, 4 and 5 on each face. At first, he will choose a number N (4 <= N <= 1000), and for N times, he keeps throwing his dice for K times (2 <=K <= 6) and writes down its number on the top face to make an N*K matrix A, in which each element is not less than 0 and not greater than 5. Then he does similar thing again with a bit difference: he keeps throwing his dice for N times and each time repeat it for K times to write down a K*N matrix B, in which each element is not less than 0 and not greater than 5. With the two matrix A and B formed, Alice’s task is to perform the following 4-step calculation.
Step 1: Calculate a new N*N matrix C = A*B.
Step 2: Calculate M = C^(N*N).
Step 3: For each element x in M, calculate x % 6. All the remainders form a new matrix M’.
Step 4: Calculate the sum of all the elements in M’.
Bob just made this problem for kidding but he sees Alice taking it serious, so he also wonders what the answer is. And then Bob turn to you for help because he is not good at math.
Bob has a six-faced dice which has numbers 0, 1, 2, 3, 4 and 5 on each face. At first, he will choose a number N (4 <= N <= 1000), and for N times, he keeps throwing his dice for K times (2 <=K <= 6) and writes down its number on the top face to make an N*K matrix A, in which each element is not less than 0 and not greater than 5. Then he does similar thing again with a bit difference: he keeps throwing his dice for N times and each time repeat it for K times to write down a K*N matrix B, in which each element is not less than 0 and not greater than 5. With the two matrix A and B formed, Alice’s task is to perform the following 4-step calculation.
Step 1: Calculate a new N*N matrix C = A*B.
Step 2: Calculate M = C^(N*N).
Step 3: For each element x in M, calculate x % 6. All the remainders form a new matrix M’.
Step 4: Calculate the sum of all the elements in M’.
Bob just made this problem for kidding but he sees Alice taking it serious, so he also wonders what the answer is. And then Bob turn to you for help because he is not good at math.
Input
The input contains several test cases. Each test case starts with two integer N and K, indicating the numbers N and K described above. Then N lines follow, and each line has K integers between 0 and 5, representing matrix A. Then K lines follow, and each line has N integers between 0 and 5, representing matrix B.
The end of input is indicated by N = K = 0.
The end of input is indicated by N = K = 0.
Output
For each case, output the sum of all the elements in M’ in a line.
Sample Input
4 2 5 5 4 4 5 4 0 0 4 2 5 5 1 3 1 5 6 3 1 2 3 0 3 0 2 3 4 4 3 2 2 5 5 0 5 0 3 4 5 1 1 0 5 3 2 3 3 2 3 1 5 4 5 2 0 0
Sample Output
14 56
Author
SYSU
Source
本文提供了一种高效的矩阵计算方法,特别是针对大规模矩阵的乘法及幂运算,并通过具体示例展示了如何利用该方法优化计算过程。
1982

被折叠的 条评论
为什么被折叠?



