当前你的浏览器版本过低,网站已在兼容模式下运行,兼容模式仅提供最小功能支持,网站样式可能显示不正常。
请尽快升级浏览器以体验网站在线编辑、在线运行等功能。

建议使用的浏览器:

谷歌Chrome 火狐Firefox Opera浏览器 微软Edge浏览器 QQ浏览器 360浏览器 傲游浏览器

3529:Matrix Analysis

题目描述

Given two integral m × n matrices A = {aij} and B = {bij}, we define a sequence of matrices SB = {Bk} with B1 = B where, for each k > 1,

__poj_jax_start__b_{ij}^k=\sum_{p=1}^{i-1}a_{pj}b_{pj}^k+\sum_{q=1}^{j-1}a_{iq}b_{iq}^k+b_{ij}^{k-1}__poj_jax_end__b_{ij}^k=\sum_{p=1}^{i-1}a_{pj}b_{pj}^k+\sum_{q=1}^{j-1}a_{iq}b_{iq}^k+b_{ij}^{k-1}.

Write a program that is capable of evaluating SB efficiently.

输入解释

The input consists of a single test case and is given in the following format:

mnt
a11a12a1n
a21a22a2n
am1am2amn
b11b12b1n
b21b22b2n
bm1bm2bmn
i1j1k1
i2j2k2
itjtkt

Bounds on the values are: 1 ≤ m, n ≤ 20; 1 ≤ t ≤ 1000; 0 ≤ aij, bij ≤ 10; 1 ≤ itm; 1 ≤ jtn; 1 ≤ kt ≤ 109.

输出解释

For each t, output bitjtkt mod 1,000,000,007.

输入样例
2 2 5
1 2
2 1
1 1
1 1
1 1 2
1 2 2
2 1 2
2 2 2
1 1 3
输出样例
1
2
2
9
1
提示

1,000,000,007 is a prime.


该题目是Virtual Judge题目,来自 北京大学POJ

源链接: POJ-3529

最后修改于 2020-10-29T07:03:49+00:00 由爬虫自动更新

共提交 0

通过率 --%
时间上限 内存上限
1000 131072