luogu#P10502. Matrix Power Series

Matrix Power Series

题目描述

Givena n×nn×n matrix AA and apositive integer kk,find the sum S=A+A2+A3+...+AkS=A+A^2 +A^3 +...+A^k.

输入格式

The input contains exactly one test case. The first line of input contains three positive integers nn (n30n \le 30), kk (k109k \le 10^9) and mm (m<104m < 10^4). Then follow n lines each containing nn non negative integers below 32,768, giving AA’s elements in row-major order.

输出格式

Output the elements of SS modulo mm in the same way as AA is given.

题目大意

【题目描述】

给定一个 n×nn×n 矩阵 AA 和一个正整数 kk,找出和 S=A+A2+A3+...+AkS=A+A^2 +A^3 +...+A^k

【输入格式】

输入包含一个测试用例。输入的第一行包含三个正整数 nnn30n \le 30)、kkk109k \le 10^9)和 mmm<104m < 10^4)。接下来的 nn 行每行包含 nn 个小于 32,768 的非负整数,按行主序给出 AA 的元素。

【输出格式】

以与给定 AA 相同的方式输出 SS 的元素对 mm 取模。

翻译来自于:ChatGPT

2 2 4 
0 1 
1 1
1 2
2 3