HDU 5068 Harry And Math Teacher

举报
Linux猿 发表于 2021/08/05 00:08:16 2021/08/05
【摘要】 题目链接~~> 做题感悟:这题真的很高深,有种高大上的感觉。 解题思路:                 两层之间的联通可以看成是一个矩阵  代表上下两层都可以联通,,代表下层第1个门与上层第一个门不联通,以此类推联通就可以用矩阵表示了。这样修改和查询都可以用线段...

题目链接~~>

做题感悟:这题真的很高深,有种高大上的感觉。

解题思路:

                两层之间的联通可以看成是一个矩阵  代表上下两层都可以联通,,代表下层第1个门与上层第一个门不联通,以此类推联通就可以用矩阵表示了。这样修改和查询都可以用线段树来完成。

代码:


  
  1. #include<iostream>
  2. #include<sstream>
  3. #include<map>
  4. #include<cmath>
  5. #include<fstream>
  6. #include<queue>
  7. #include<vector>
  8. #include<sstream>
  9. #include<cstring>
  10. #include<cstdio>
  11. #include<stack>
  12. #include<bitset>
  13. #include<ctime>
  14. #include<string>
  15. #include<cctype>
  16. #include<iomanip>
  17. #include<algorithm>
  18. using namespace std ;
  19. #define INT __int64
  20. #define L(x) (x * 2)
  21. #define R(x) (x * 2 + 1)
  22. const int INF = 0x3f3f3f3f ;
  23. const double esp = 0.0000000001 ;
  24. const double PI = acos(-1.0) ;
  25. const INT mod = 1000000007 ;
  26. const int MY = 1400 + 5 ;
  27. const int MX = 50000 + 5 ;
  28. int n ,m ;
  29. struct node
  30. {
  31. int le ,rt ;
  32. INT p[2][2] ;
  33. }T[MX*8] ;
  34. node operator *(const node& a ,const node& b)
  35. {
  36. node c ;
  37. memset(c.p ,0 ,sizeof(c.p)) ;
  38. for(int i = 0 ;i < 2 ; ++i)
  39. for(int k = 0 ;k < 2 ; ++k)
  40. if(a.p[i][k])
  41. for(int j = 0 ;j < 2 ; ++j)
  42. c.p[i][j] = (c.p[i][j] + a.p[i][k]*b.p[k][j])%mod ;
  43. return c ;
  44. }
  45. void build(int x ,int le ,int rt)
  46. {
  47. T[x].le = le ; T[x].rt = rt ;
  48. if(le == rt)
  49. {
  50. for(int i = 0 ;i < 2 ; ++i)
  51. for(int j = 0 ;j < 2 ; ++j)
  52. T[x].p[i][j] = 1 ;
  53. return ;
  54. }
  55. int Mid = (le + rt)>>1 ;
  56. build(L(x) ,le ,Mid) ;
  57. build(R(x) ,Mid+1 ,rt) ;
  58. T[x] = T[L(x)] * T[R(x)] ;
  59. T[x].le = le ; T[x].rt = rt ;
  60. }
  61. void update(int x ,int pos ,int i ,int j)
  62. {
  63. if(T[x].le == T[x].rt)
  64. {
  65. T[x].p[i][j] ^= 1 ;
  66. return ;
  67. }
  68. int Mid = (T[x].le + T[x].rt)>>1 ;
  69. if(pos <= Mid) update(L(x) ,pos ,i ,j) ;
  70. else update(R(x) ,pos ,i ,j) ;
  71. int le = T[x].le ,rt = T[x].rt ;
  72. T[x] = T[L(x)] * T[R(x)] ;
  73. T[x].le = le ; T[x].rt = rt ;
  74. }
  75. node section(int x ,int le ,int rt) // 查询
  76. {
  77. if(T[x].le == le && T[x].rt == rt)
  78. return T[x] ;
  79. int Mid = (T[x].le + T[x].rt)>>1 ;
  80. if(rt <= Mid) return section(L(x) ,le ,rt) ;
  81. else if(le > Mid) return section(R(x) ,le ,rt) ;
  82. else
  83. return section(L(x) ,le ,Mid)*section(R(x) ,Mid+1 ,rt) ;
  84. }
  85. int main()
  86. {
  87. //freopen("input.txt" ,"r" ,stdin) ;
  88. int p ,u ,v ,z ;
  89. while(~scanf("%d%d" ,&n ,&m))
  90. {
  91. build(1 ,1 ,n) ;
  92. for(int i = 0 ;i < m ; ++i)
  93. {
  94. scanf("%d" ,&p) ;
  95. if(p)
  96. {
  97. scanf("%d%d%d" ,&u ,&v ,&z) ;
  98. update(1 ,u ,v-1 ,z-1) ;
  99. }
  100. else
  101. {
  102. scanf("%d%d" ,&u ,&v) ;
  103. node ans = section(1 ,u ,v-1) ;
  104. printf("%I64d\n" ,(ans.p[0][0] + ans.p[0][1] + ans.p[1][0] + ans.p[1][1])%mod) ;
  105. }
  106. }
  107. }
  108. return 0 ;
  109. }


文章来源: blog.csdn.net,作者:Linux猿,版权归原作者所有,如需转载,请联系作者。

原文链接:blog.csdn.net/nyist_zxp/article/details/40346005

【版权声明】本文为华为云社区用户转载文章,如果您发现本社区中有涉嫌抄袭的内容,欢迎发送邮件进行举报,并提供相关证据,一经查实,本社区将立刻删除涉嫌侵权内容,举报邮箱: cloudbbs@huaweicloud.com
  • 点赞
  • 收藏
  • 关注作者

评论(0

0/1000
抱歉,系统识别当前为高风险访问,暂不支持该操作

全部回复

上滑加载中

设置昵称

在此一键设置昵称,即可参与社区互动!

*长度不超过10个汉字或20个英文字符,设置后3个月内不可修改。

*长度不超过10个汉字或20个英文字符,设置后3个月内不可修改。