题意:给定一个矩阵的第0列的第1到n个数,第一行第1个数开始每个数分别为233, 2333........,求第n行的第m个数。

分析:

其实也没那么难,自己想了半天还没往对的方向想,m最大1e9,应该立即想到要用到快速幂,关键在于递推矩阵。

递推矩阵的作用是依次算出每一列,第1列第一个数233是前一列的23*10+3,将前一列增加一个元素[3, 23, a1, a2,....an],然后第一列第一个数为3,对应向量[1, 0, 0, 0.....0],233对应向量[1, 10, 0, .....0],下一个的数对应[1, 10, 1.....0], 接下来每个数对应的向量是上一个数的向量最后一个1元素后面增加1个1,这样将n+2个向量构成一个(n+2)*(n+2)的矩阵,需要求m次该矩阵,然后和[3, 23, a1, a2, .....an]相乘。

代码:

  1. #include <cstdio>
  2. #include <iostream>
  3. #include <vector>
  4. #include <algorithm>
  5. #define inf 0x0f0f0f0f
  6. #define pb push_back
  7. #define bug(x) printf("line %d: >>>>>>>>>>>>>>>\n", (x));
  8. #define in freopen("F:\\code\\data\\data.txt", "r", stdin);
  9. #define out freopen("F:\\code\\data\\data_out.txt", "w", stdout);
  10.  
  11. #define SZ(x) ((int)x.size())
  12. #define lson rt<<1, l, m
  13. #define rson rt<<1|1, m+1, r
  14. using namespace std;
  15.  
  16. typedef long long LL;
  17. const int maxn = ;
  18. const int M = ;
  19.  
  20. struct Matrix
  21. {
  22. int n, m;
  23. LL a[maxn][maxn];
  24. Matrix(int n, int m)
  25. {
  26. this->n = n;
  27. this->m = m;
  28. for(int i = ; i < maxn; i++)
  29. for(int j = ; j < maxn; j++)
  30. a[i][j] = ;
  31. }
  32. Matrix operator * (const Matrix &o)const
  33. {
  34. Matrix c(n, o.m);
  35. for(int i = ; i < n; i++)
  36. for(int j = ; j < o.m; j++)
  37. {
  38. for(int k = ; k < m; k++)
  39. c.a[i][j] = (c.a[i][j]+a[i][k]*o.a[k][j]%M)%M;
  40. }
  41. return c;
  42. }
  43. };
  44. int n, m;
  45. int main()
  46. {
  47.  
  48. while(scanf("%d%d", &n, &m) == )
  49. {
  50. Matrix f(n+, n+), res(n+, n+), tmp(n+, );
  51. tmp.a[][] = ;
  52. tmp.a[][] = ;
  53. for(int i = ; i <= n+; i++)
  54. scanf("%I64d", &tmp.a[i][]);
  55. for(int i = ; i <= n+; i++)
  56. for(int j = ; j <= n+; j++)
  57. {
  58. if(i == )
  59. {
  60. f.a[i][] = ;
  61. break;
  62. }
  63. else if(i == )
  64. {
  65. f.a[i][] = ;
  66. f.a[i][] = ;
  67. break;
  68. }
  69. else
  70. {
  71. if(j < i)
  72. f.a[i][j] = f.a[i-][j];
  73. else if(j == i) f.a[i][j] = ;
  74. }
  75. }
  76. for(int i = ; i < n+; i++)
  77. for(int j = ; j < n+; j++)
  78. if(i == j)
  79. res.a[i][j] = ;
  80. while(m)
  81. {
  82. if(m&)
  83. res = res*f;
  84. f = f*f;
  85. m >>= ;
  86. }
  87. tmp = res*tmp;
  88. printf("%I64d\n", tmp.a[n+][]);
  89. }
  90. return ;
  91. }

HDU 5015 233 Matrix的更多相关文章

  1. HDU - 5015 233 Matrix(杨辉三角/前缀+矩阵快速幂)

    233 Matrix In our daily life we often use 233 to express our feelings. Actually, we may say 2333, 23 ...

  2. HDU 5015 233 Matrix(网络赛1009) 矩阵快速幂

    先贴四份矩阵快速幂的模板:http://www.cnblogs.com/shangyu/p/3620803.html http://www.cppblog.com/acronix/archive/20 ...

  3. hdu 5015 233 Matrix (矩阵高速幂)

    233 Matrix Time Limit: 10000/5000 MS (Java/Others)    Memory Limit: 65536/65536 K (Java/Others) Tota ...

  4. HDU - 5015 233 Matrix (矩阵快速幂)

    In our daily life we often use 233 to express our feelings. Actually, we may say 2333, 23333, or 233 ...

  5. hdu 5015 233 Matrix(构造矩阵)

    http://acm.hdu.edu.cn/showproblem.php?pid=5015 由于是个二维的递推式,当时没有想到能够这样构造矩阵.从列上看,当前这一列都是由前一列递推得到.依据这一点来 ...

  6. HDU 5015 233 Matrix --矩阵快速幂

    题意:给出矩阵的第0行(233,2333,23333,...)和第0列a1,a2,...an(n<=10,m<=10^9),给出式子: A[i][j] = A[i-1][j] + A[i] ...

  7. hdu 5015 233矩阵快速幂

    http://acm.hdu.edu.cn/showproblem.php?pid=5015 需要构造一个 n+2 维的矩阵. 就是要增加一维去维护2333这样的序列. 可以发现 2333 = 233 ...

  8. HDU [P5015] 233 Matrix

    矩阵快速幂 按列递推 #include <iostream> #include <cstdio> #include <cstdlib> #include <a ...

  9. Spring-1-I 233 Matrix(HDU 5015)解题报告及测试数据

    233 Matrix Time Limit:5000MS     Memory Limit:65536KB     64bit IO Format:%I64d & %I64u Descript ...

随机推荐

  1. Java编写的文本编辑器(菜鸟作品)

    //这是主窗体文件 Wordwin.java import javax.swing.*; import javax.swing.event.DocumentEvent; import javax.sw ...

  2. Android寒假实训云笔记总结——欢迎页

    欢迎页使用的是viewpager,需要适配器. 注意点: 1.判断是否是第一次进入这个app. 2.欢迎页小圆点的逻辑. 实现原理: 首先在activity_welcome放入viewpager和固定 ...

  3. .bak文件在英文版的sqlserver2014如何生成和恢复

    生成bak备份文件 1.选择数据库 2.右击选择task 3.选择backup 4.

  4. Appium Android 屏幕滑动

  5. RabbitMQ远程访问配置

    1 首先创建一个新的账户 并给上Administrator标签 2然后给这个新账户添加虚拟主机访问权限 3在windows 下的 rabbitmq安装文件下的etc文件下的配置文件添加以下 [    ...

  6. JS中undefined和null的区别

    在写JS脚本的时候,经常会碰到“为空”的判断,其中主要有null和undefined的判断.这两个为空判断的主要区别是: 1) null是JS的关键字,是语法特性.undefined是全局对象的属性, ...

  7. PYTHON代码摘录

    文件处理 #典型的读取文件代码 row_data = {} with open('PaceData.csv') as paces: column_heading = paces.readline(). ...

  8. j2ee中如何拦截jsp页面?

    加filter: public class RightFilter implements Filter { public void init(FilterConfig filterConfig) th ...

  9. python学习笔记——列表生成式与生成器

    1.列表生成式(List Comprehensions) python中,列表生成式是用来创建列表的,相较于用循环实现更为简洁.举个例子,生成[1*1, 2*2, ... , 10*10],循环用三行 ...

  10. [Python][flask][flask-wtf]关于flask-wtf中API使用实例教程

    简介:简单的集成flask,WTForms,包括跨站请求伪造(CSRF),文件上传和验证码. 一.安装(Install) 此文仍然是Windows操作系统下的教程,但是和linux操作系统下的运行环境 ...