题解报告:hdu 1575 Tr A

题目链接:http://acm.hdu.edu.cn/showproblem.php?pid=1575

Problem Description

A为一个方阵,则Tr A表示A的迹(就是主对角线上各项的和),现要求Tr(A^k)%9973。

Input

数据的第一行是一个T,表示有T组数据。每组数据的第一行有n(2 <= n <= 10)和k(2 <= k < 10^9)两个数据。接下来有n行,每行有n个数据,每个数据的范围是[0,9],表示方阵A的内容。

Output

对应每组数据,输出Tr(A^k)%9973。

Sample Input

2

2 2

1 0

0 1

3 99999999

1 2 3

4 5 6

7 8 9

Sample Output

2

2686

解题思路:简单的矩阵快速幂。

AC代码:

 1 #include<bits/stdc++.h>
 2 using namespace std;
 3 const int mod=9973;
 4 const int maxn=15;
 5 int t,n,k;
 6 struct Matrix
 7 {
 8     int m[maxn][maxn];
 9 }init,unit;//矩阵,单位矩阵初始化
10 Matrix mul(Matrix a,Matrix b)
11 {
12     Matrix c;
13     for(int i=0;i<n;i++){//枚举第一个矩阵的行。
14         for(int j=0;j<n;j++){//枚举第二个矩阵的列。
15             c.m[i][j]=0;
16             for(int k=0;k<n;k++)//枚举元素。
17                 c.m[i][j]=(c.m[i][j]+a.m[i][k]*b.m[k][j]%mod)%mod;
18             c.m[i][j]%=mod;
19         }
20     }
21     return c;
22 }
23 Matrix POW(Matrix a,Matrix b,int x)//矩阵快速幂模仿一般快速幂,x为幂指数
24 {
25     while(x){
26         if(x&1)b=mul(b,a);//奇数
27         a=mul(a,a);
28         x>>=1;
29     }
30     return b;
31 }
32 int main()
33 {
34     cin>>t;
35     while(t--){
36         cin>>n>>k;
37         for(int i=0;i<n;++i){
38             for(int j=0;j<n;++j){
39                 cin>>init.m[i][j];
40                 unit.m[i][j]=init.m[i][j];//两个矩阵相同
41             }
42         }
43         Matrix res=POW(init,unit,k-1);//取走了1个n*n矩阵,剩下k-1个,进行快速幂取模运算
44         int ans=0;
45         for(int i=0;i<n;++i)//主对角线上各项的和
46             ans=(ans+res.m[i][i])%mod;
47         cout<<ans<<endl;
48     }
49     return 0;
50 }

原文地址:https://www.cnblogs.com/acgoto/p/9076294.html

时间: 2024-10-05 05:00:04

题解报告:hdu 1575 Tr A的相关文章

HDU 1575 Tr A 【矩阵经典2 矩阵快速幂入门】

任意门:http://acm.hdu.edu.cn/showproblem.php?pid=1575 Tr A Time Limit: 1000/1000 MS (Java/Others)    Memory Limit: 32768/32768 K (Java/Others)Total Submission(s): 7572    Accepted Submission(s): 5539 Problem Description A为一个方阵,则Tr A表示A的迹(就是主对角线上各项的和),现要

HDU 1575 Tr A(矩阵高速幂)

题目地址:HDU 1575 矩阵高速幂裸题. 初学矩阵高速幂.曾经学过高速幂.今天一看矩阵高速幂,原来其原理是一样的,这就好办多了.都是利用二分的思想不断的乘.仅仅只是把数字变成了矩阵而已. 代码例如以下: #include <iostream> #include <cstdio> #include <string> #include <cstring> #include <stdlib.h> #include <math.h> #i

HDU 1575 Tr A(矩阵快速幂)

Time Limit: 1000/1000 MS (Java/Others)    Memory Limit: 32768/32768 K (Java/Others)Total Submission(s): 5537    Accepted Submission(s): 4161 Problem Description A为一个方阵,则Tr A表示A的迹(就是主对角线上各项的和),现要求Tr(A^k)%9973. Input 数据的第一行是一个T,表示有T组数据.每组数据的第一行有n(2 <=

hdu 1575 Tr A(矩阵快速幂乘法优化算法)

Problem Description A为一个方阵,则Tr A表示A的迹(就是主对角线上各项的和),现要求Tr(A^k)%9973. Input 数据的第一行是一个T,表示有T组数据. 每组数据的第一行有n(2 <= n <= 10)和k(2 <= k < 10^9)两个数据.接下来有n行,每行有n个数据,每个数据的范围是[0,9],表示方阵A的内容. Output 对应每组数据,输出Tr(A^k)%9973. Sample Input 2 2 2 1 0 0 1 3 99999

HDU 1575 - Tr A

A为一个方阵,则Tr A表示A的迹(就是主对角线上各项的和),现要求Tr(A^k)%9973. 直接矩阵快速幂取模. 1 #include <iostream> 2 #include <cstdio> 3 #include <cstring> 4 using namespace std; 5 #define LL long long 6 const int mod=9973; 7 struct P{ 8 int a[15][15]; 9 }c,s; 10 int t,n

hdu 1575 Tr A(矩阵高速电源输入)

Tr A Time Limit: 1000/1000 MS (Java/Others)    Memory Limit: 32768/32768 K (Java/Others) Total Submission(s): 2977    Accepted Submission(s): 2217 Problem Description A为一个方阵,则Tr A表示A的迹(就是主对角线上各项的和),现要求Tr(A^k)%9973. Input 数据的第一行是一个T,表示有T组数据. 每组数据的第一行有

hdu 1575 Tr A(矩阵快速幂入门)

Tr A Time Limit: 1000/1000 MS (Java/Others)    Memory Limit: 32768/32768 K (Java/Others) Total Submission(s): 2977    Accepted Submission(s): 2217 Problem Description A为一个方阵,则Tr A表示A的迹(就是主对角线上各项的和),现要求Tr(A^k)%9973. Input 数据的第一行是一个T,表示有T组数据. 每组数据的第一行有

HDU 1575 &amp;&amp; 1757 矩阵快速幂&amp;&amp;构造矩阵入门

HDU 1575 Tr A Time Limit: 1000/1000 MS (Java/Others)    Memory Limit: 32768/32768 K (Java/Others)Total Submission(s): 2912    Accepted Submission(s): 2167 Problem Description A为一个方阵,则Tr A表示A的迹(就是主对角线上各项的和),现要求Tr(A^k)%9973. Input 数据的第一行是一个T,表示有T组数据.每组

题解报告:hdu 1162 Eddy&#39;s picture

Problem Description Eddy begins to like painting pictures recently ,he is sure of himself to become a painter.Every day Eddy draws pictures in his small room, and he usually puts out his newest pictures to let his friends appreciate. but the result i