博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
POJ 3233 (矩阵)
阅读量:6284 次
发布时间:2019-06-22

本文共 761 字,大约阅读时间需要 2 分钟。

题意:对于矩阵A,求A^1 + ...... + A^k

按照的思路大致做了下。

在k为奇数时:  A^( k / 2+1)+ 1) * (A^1 + ....... A^(k/2)) + A^(k/2+1)

k为偶数时:(A^(k/2) + 1 )* (A^1 + ................A^(k/2))

但是超时了,应该是没二分的问题。

 

#include
#include
#include
#include
#include
#include
#include
#include
#include
#include
#include
#include
#include
using namespace std;typedef long long ll;const int maxn=5e5;map
has;struct Matrix{ int xmap[30][30];};int siz;Matrix mat;int n,mod;Matrix Mul(const Matrix &a,const Matrix &b){ Matrix c; for(int i=0; i
>1); return Mul(tmp,tmp); }}Matrix Add(const Matrix &a,const Matrix &b){ Matrix c; for(int i=0; i

  

转载于:https://www.cnblogs.com/Przz/p/5409750.html

你可能感兴趣的文章
JAVA IO BIO NIO AIO
查看>>
input checkbox 复选框大小修改
查看>>
网吧维护工具
查看>>
BOOT.INI文件参数
查看>>
vmstat详解
查看>>
新年第一镖
查看>>
unbtu使用笔记
查看>>
OEA 中 WPF 树型表格虚拟化设计方案
查看>>
Android程序开发初级教程(一) 开始 Hello Android
查看>>
使用Gradle打RPM包
查看>>
“我意识到”的意义
查看>>
淘宝天猫上新辅助工具-新品填表
查看>>
再学 GDI+[43]: 文本输出 - 获取已安装的字体列表
查看>>
nginx反向代理
查看>>
操作系统真实的虚拟内存是什么样的(一)
查看>>
hadoop、hbase、zookeeper集群搭建
查看>>
python中一切皆对象------类的基础(五)
查看>>
modprobe
查看>>
android中用ExpandableListView实现三级扩展列表
查看>>
%Error opening tftp://255.255.255.255/cisconet.cfg
查看>>