Ultraviolet A 11149-power of matrix (matrix multiplication)

Source: Internet
Author: User
Ultraviolet A 11149-power of Matrix

Question Link

Given an N * n matrix A and K, evaluate ΣKIAI

Train of Thought: Use multiplier to implement, SigmaKIAI= (1 +AK/2) ΣK/2IAI, Continue to be split.

Code:

#include <cstdio>#include <cstring>const int N = 45;int n, k;struct mat {int v[N][N];mat() {memset(v, 0, sizeof(v));} mat operator * (mat c) { mat ans; for (int i = 0; i < n; i++) { for (int j = 0; j < n; j++) { for (int k = 0; k < n; k++) { ans.v[i][j] = (ans.v[i][j] + v[i][k] * c.v[k][j]) % 10;     }    }}return ans;  }  mat operator + (mat c) {  mat ans;  for (int i = 0; i < n; i++)  for (int j = 0; j < n; j++)  ans.v[i][j] = (v[i][j] + c.v[i][j]) % 10;return ans;   }} A;mat pow_mod(mat x, int k) {mat ans;for (int i = 0; i < n; i++) ans.v[i][i] = 1;while (k) {if (k&1) ans = ans * x;x = x * x;k >>= 1; } return ans;}mat solve(mat x, int k) {if (k == 1) return x;mat ans;for (int i = 0; i < n; i++) ans.v[i][i] = 1;if (k == 0) return ans;ans = (ans + pow_mod(x, k>>1))* solve(x, k>>1);if (k&1) ans = ans + pow_mod(x, k);return ans;}int main() {while (~scanf("%d%d", &n, &k) && n) { for (int i = 0; i < n; i++)   for (int j = 0; j < n; j++) {      scanf("%d", &A.v[i][j]);      A.v[i][j] %= 10;   }      A = solve(A, k);      for (int i = 0; i < n; i++)      for (int j = 0; j < n; j++)      printf("%d%c", A.v[i][j], (j == n - 1 ? '\n' : ' '));printf("\n"); }return 0;}


Related Article

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.