首页 > 代码库 > poj 3070 矩阵快速乘
poj 3070 矩阵快速乘
#include <map>
#include <stdio.h>
#include <iostream>
using namespace std;
void multiple ( int x[2][2], int y[2][2] )
{
int temp[2][2]
temp[0][0] = (;x[0][0]*y[0][0]+x[0][1]*y[1][0])%10000;
temp[0][1] = (x[0][0]*y[0][1]+x[0][1]*y[1][1])%10000;
temp[1][0] = (x[1][0]*y[0][0]+x[1][1]*y[1][0])%10000;
temp[1][1] = (x[1][0]*y[0][1]+x[1][1]*y[1][1])%10000;
x[0][0] = temp[0][0];
x[0][1] = temp[0][1];
x[1][0] = temp[1][0];
x[1][1] = temp[1][1];
}
int main()
{
int n;
while( ~scanf("%d", &n) )
{
int x[2][2] =
{ 1, 1,
1, 0
};
int y[2][2] =
{ 1, 0,
0, 1
};
if(n == 0) printf("0\n");
else
{
for(; n>0; n /=2)
}
}
return 0;
}
来自为知笔记(Wiz)
附件列表
poj 3070 矩阵快速乘
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。