HDU 4965 fast matrix calculation (matrix fast power)

Source: Internet
Author: User

Question link: http://acm.hdu.edu.cn/showproblem.php? PID = 1, 4965


Problem descriptionone 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, 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 serous, so he also wonders what the answer is. And then bob turn to you for help because he is not good at math.
Inputthe 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. 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.
Outputfor each case, output the sum of all the elements in m' in a line.
Sample Input
4 25 54 45 40 04 2 5 51 3 1 56 31 2 30 3 02 3 44 3 22 5 50 5 03 4 5 1 1 05 3 2 3 3 23 1 5 4 5 20 0
 
Sample output
1456
 
Authorsysu
Source2014 multi-university training contest 9


Ideas:

(Here K is described as M)

Since a is a matrix of n × m, B is a matrix of m × N, while N is large, M is small. So we can M = A * (B * )*.... * (B * A) * B so that we can first use the Matrix to quickly obtain the power (B * A) ^ (N * N-1), and then right multiply by a B, just multiply by a value on the left.
The Code is as follows:
# Include <cstdio> # include <cstring> # include <iostream> # include <algorithm> using namespace STD; const int maxn = 1017; # define mod 6 struct matrix {int mat [6] [6] ;}; int n, m; // matrix size int A [maxn] [6], B [6] [maxn], C [maxn] [6], d [maxn] [maxn]; Matrix T, E; matrix MUL (matrix A, matrix B) {Matrix T; memset (T. mat, 0, sizeof (T. mat); For (INT I = 0; I <m; I ++) // The Maximum Matrix size is M * m {for (Int J = 0; j <m; j ++) {for (int K = 0; k <m; K ++) {T. mat [I] [J] + =. mat [I] [k] * B. mat [k] [J]; T. mat [I] [J] % = mod ;}} return t;} matrix quickp (int K) {matrix P = T, mm; memset (mm. mat, 0, sizeof (mm. mat); For (INT I = 0; I <m; I ++) // unit matrix {mm. mat [I] [I] = 1 ;}while (k) {If (K & 1) Mm = MUL (mm, P); P = MUL (P, P ); k> = 1;} return mm;} void Init () {memset (T. mat, 0, sizeof (T. mat); memset (C, 0, sizeof (c); memset (D, 0, sizeof (d);} int main () {While (~ Scanf ("% d", & N, & M) {If (n = 0 & M = 0) break; Init (); for (INT I = 0; I <n; I ++) // the size of matrix A N * m {for (Int J = 0; j <m; j ++) {scanf ("% d", & A [I] [J]) ;}}for (INT I = 0; I <m; I ++) // size of matrix B M * n {for (Int J = 0; j <n; j ++) {scanf ("% d ", & B [I] [J]) ;}}for (INT I = 0; I <m; I ++) // The size of Matrix T = B * A is M * m {for (Int J = 0; j <m; j ++) {for (int K = 0; k <n; k ++) {T. mat [I] [J] + = B [I] [k] * A [k] [J]; T. mat [I] [J] % = mod ;}} E = quickp (N * N-1); // just multiply N * n-1 times for (INT I = 0; I <n; I ++) // matrix C = A * E is N * m {for (Int J = 0; j <m; j ++) {for (int K = 0; k <m; k ++) {C [I] [J] + = A [I] [k] * E. mat [k] [J]; C [I] [J] % = mod ;}} int ans = 0; For (INT I = 0; I <N; I ++) // matrix D = C * B size is N * n {for (Int J = 0; j <n; j ++) {for (int K = 0; k <m; k ++) {d [I] [J] + = C [I] [k] * B [k] [J];} ans + = d [I] [J] % MOD;} printf ("% d \ n", ANS);} return 0 ;}


Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.