不想调了

  1. #include <bits/stdc++.h>
  2.  
  3. const int N = 1e5 + ;
  4.  
  5. #define LL long long
  6. #define gc getchar()
  7.  
  8. int fjs;
  9. struct Node {
  10. LL xy, x, y, x_2, lenst, lens, lent, lentt;
  11. LL S_2, T_2/*用于 2 操作*/, S_1, T_1/*用于 3 操作*/;
  12. bool flag1/*用于 2 操作*/, flag2/*用于 3 操作*/;
  13. int size;
  14. int l, r;
  15. };
  16. Node T[N << ];
  17. int impx[N], impy[N];
  18.  
  19. Node operator + (const Node &a, const Node &b) {
  20. Node ret;
  21. ret.x = a.x + b.x;
  22. ret.y = a.y + b.y;
  23. ret.xy = a.xy + b.xy;
  24. ret.x_2 = a.x_2 + b.x_2;
  25. ret.size = a.size + b.size;
  26. return ret;
  27. }
  28.  
  29. int n, Ty, Len;
  30.  
  31. inline LL read() {
  32. LL x = , f = ; char c = gc;
  33. while(c < '' || c > '') {if(c == '-') f = -; c = gc;}
  34. while(c >= '' && c <= '') x = x * + c - '', c = gc;
  35. return x * f;
  36. }
  37.  
  38. #define lson jd << 1
  39. #define rson jd << 1 | 1
  40.  
  41. void Build_tree(int l, int r, int jd) {
  42. T[jd].size = (r - l + ); T[jd].l = l; T[jd].r = r;
  43. if(l == r) {
  44. int x_ = impx[l], y_ = impy[l];
  45. T[jd].x = x_;
  46. T[jd].y = y_;
  47. T[jd].xy = x_ * y_;
  48. T[jd].x_2 = x_ * x_;
  49. return ;
  50. }
  51. int mid = (l + r) >> ;
  52. Build_tree(l, mid, lson);
  53. Build_tree(mid + , r, rson);
  54. T[jd] = T[lson] + T[rson];
  55. }
  56.  
  57. void Clear_1(int jd) {
  58. T[jd].flag1 = T[jd].lenst = T[jd].lens = T[jd].lent = T[jd].lentt = ;
  59. T[jd].S_1 = T[jd].T_1 = ;
  60. }
  61.  
  62. void Clear_2(int jd) {
  63. T[jd].flag2 = ;
  64. T[jd].S_2 = T[jd].T_2 = ;
  65. }
  66.  
  67. void Down_1(int jd) {
  68. T[lson].flag1 = T[rson].flag1 = ++ fjs;
  69. T[lson].S_1 += T[jd].S_1;
  70. T[rson].S_1 += T[jd].S_1;
  71. T[lson].T_1 += T[jd].T_1;
  72. T[rson].T_1 += T[jd].T_1;
  73. T[lson].lenst += T[jd].lenst;
  74. T[rson].lenst += T[jd].lenst;
  75. T[lson].lens += T[jd].lens;
  76. T[rson].lens += T[jd].lens;
  77. T[lson].lent += T[jd].lent;
  78. T[rson].lent += T[jd].lent;
  79. T[lson].lentt += T[jd].lentt;
  80. T[rson].lentt += T[jd].lentt;
  81. int s = T[jd].S_1, t = T[jd].T_1;
  82. T[lson].xy += (t * T[lson].x + s * T[lson].y + T[jd].lenst);
  83. T[lson].x_2 += ( * t * T[lson].x + T[jd].lentt);
  84. T[lson].x += T[jd].lens;
  85. T[lson].y += T[jd].lent;
  86. T[rson].xy += (t * T[rson].x + s * T[rson].y + T[jd].lenst);
  87. T[rson].x_2 += ( * t * T[rson].x + T[jd].lentt);
  88. T[rson].x += T[jd].lens;
  89. T[rson].y += T[jd].lent;
  90. Clear_1(jd);
  91. }
  92.  
  93. void Work_1(int, int, int, int, int, int, int);
  94.  
  95. void Down_2(int jd) {
  96. T[lson].flag2 = T[rson].flag2 = ++ fjs;
  97. T[lson].S_2 = T[rson].S_2 = T[jd].S_2;
  98. T[lson].T_2 = T[rson].T_2 = T[jd].T_2;
  99. int l, r;
  100. l = T[lson].l, r = T[lson].r;
  101. T[lson].xy = T[lson].x_2 = (r * (r + ) * ( * r + ) / ) - (l * (l - ) * ( * l - )) / ;
  102. T[lson].x = T[lson].y = (l + r) / * (r - l + );
  103. Work_1(, n, , l, r, T[jd].S_2, T[jd].T_2);
  104. l = T[rson].l, r = T[rson].r;
  105. T[rson].xy = T[rson].x_2 = (r * (r + ) * ( * r + ) / ) - (l * (l - ) * ( * l - )) / ;
  106. T[rson].x = T[rson].y = (l + r) / * (r - l + );
  107. Work_1(, n, , l, r, T[jd].S_2, T[jd].T_2);
  108. Clear_2(jd);
  109. }
  110.  
  111. void Work_1(int l, int r, int jd, int x, int y, int s, int t) {
  112. if(x <= l && r <= y) {
  113. T[jd].flag1 = ++ fjs;
  114. T[jd].S_1 = s;
  115. T[jd].T_1 = s;
  116. T[jd].xy += (t * T[jd].x + s * T[jd].y + Len * s * t);
  117. T[jd].x_2 += ( * t * T[jd].x + Len * t * t);
  118. T[jd].x += Len * s;
  119. T[jd].y += Len * t;
  120. T[jd].lenst += Len * s * t;
  121. T[jd].lens += Len * s;
  122. T[jd].lent += Len * t;
  123. T[jd].lentt += Len * t * t;
  124. return ;
  125. }
  126. if(T[jd].flag2 > T[jd].flag1) Down_1(jd), Down_2(jd);
  127. else Down_2(jd), Down_1(jd);
  128. int mid = (l + r) >> ;
  129. if(x <= mid) Work_1(l, mid, lson, x, y, s, t);
  130. if(y > mid) Work_1(mid + , r, rson, x, y, s, t);
  131. T[jd] = T[lson] + T[rson];
  132. }
  133.  
  134. void Work_2(int l, int r, int jd, int x, int y, int s, int t) {
  135. if(x <= l && r <= y) {
  136. T[jd].flag2 = ++ fjs;
  137. T[jd].S_2 = s;
  138. T[jd].T_2 = t;
  139. T[jd].xy = T[jd].x_2 = (r * (r + ) * ( * r + )) / - (l * (l - ) * ( * l - )) / ;
  140. T[jd].x = T[jd].y = (l + r) / * (r - l + );
  141. Work_1(, n, , l, r, s, t);
  142. return ;
  143. }
  144. if(T[jd].flag2 > T[jd].flag1) Down_1(jd), Down_2(jd);
  145. else Down_2(jd), Down_1(jd);
  146. int mid = (l + r) >> ;
  147. if(x <= mid) Work_2(l, mid, lson, x, y, s, t);
  148. if(y > mid) Work_2(mid + , r, rson, x, y, s, t);
  149. T[jd] = T[lson] + T[rson];
  150. }
  151.  
  152. int Sec_A_xy(int l, int r, int jd, int x, int y) {
  153. if(x <= l && r <= y) return T[jd].xy;
  154. if(T[jd].flag2 > T[jd].flag1) Down_1(jd), Down_2(jd);
  155. else Down_2(jd), Down_1(jd);
  156. int mid = (l + r) >> ;
  157. if(y <= mid) return Sec_A_xy(l, mid, lson, x, y);
  158. else if(x > mid) return Sec_A_xy(mid + , r, rson, x, y);
  159. else return Sec_A_xy(l, mid, lson, x, y) + Sec_A_xy(mid + , r, rson, x, y);
  160. }
  161.  
  162. int Sec_A_x(int l, int r, int jd, int x, int y) {
  163. if(x <= l && r <= y) return T[jd].x;
  164. if(T[jd].flag2 > T[jd].flag1) Down_1(jd), Down_2(jd);
  165. else Down_2(jd), Down_1(jd);
  166. int mid = (l + r) >> ;
  167. if(y <= mid) return Sec_A_x(l, mid, lson, x, y);
  168. else if(x > mid) return Sec_A_x(mid + , r, rson, x, y);
  169. else return Sec_A_x(l, mid, lson, x, y) + Sec_A_x(mid + , r, rson, x, y);
  170. }
  171.  
  172. int Sec_A_y(int l, int r, int jd, int x, int y) {
  173. if(x <= l && r <= y) return T[jd].y;
  174. if(T[jd].flag2 > T[jd].flag1) Down_1(jd), Down_2(jd);
  175. else Down_2(jd), Down_1(jd);
  176. int mid = (l + r) >> ;
  177. if(y <= mid) return Sec_A_y(l, mid, lson, x, y);
  178. else if(x > mid) return Sec_A_y(mid + , r, rson, x, y);
  179. else return Sec_A_y(l, mid, lson, x, y) + Sec_A_y(mid + , r, rson, x, y);
  180. }
  181.  
  182. int Sec_A_x_2(int l, int r, int jd, int x, int y) {
  183. if(x <= l && r <= y) return T[jd].x_2;
  184. if(T[jd].flag2 > T[jd].flag1) Down_1(jd), Down_2(jd);
  185. else Down_2(jd), Down_1(jd);
  186. int mid = (l + r) >> ;
  187. if(y <= mid) return Sec_A_x_2(l, mid, lson, x, y);
  188. else if(x > mid) return Sec_A_x_2(mid + , r, rson, x, y);
  189. else return Sec_A_x_2(l, mid, lson, x, y) + Sec_A_x_2(mid + , r, rson, x, y);
  190. }
  191.  
  192. int main() {
  193. freopen("gg.in", "r", stdin);
  194. n = read(); Ty = read();
  195. for(int i = ; i <= n; i ++) impx[i] = read();
  196. for(int i = ; i <= n; i ++) impy[i] = read();
  197. Build_tree(, n, );
  198. for(; Ty; Ty --) {
  199. int opt = read(), l = read(), r = read(); Len = (r - l + );
  200. if(opt == ) {
  201. double a = Sec_A_xy(, n, , l, r) * 1.0;
  202. double b = Sec_A_x(, n, , l, r) * 1.0;
  203. double c = Sec_A_y(, n, , l, r) * 1.0;
  204. double d = Sec_A_x_2(, n, , l, r) * 1.0;
  205. double Ans = (a - b * c / (double)Len) / (double)(1.0 * d - 1.0 * b * b / (double)Len);
  206. printf("%.10lf\n", Ans);
  207. continue ;
  208. }
  209. int s = read(), t = read();
  210. if(opt == ) Work_1(, n, , l, r, s, t);
  211. else if(opt == ) Work_2(, n, , l, r, s, t);
  212. }
  213. return ;
  214. }

[Luogu] 相关分析的更多相关文章

  1. [题目] Luogu P3707 [SDOI2017]相关分析

    参考资料:[Luogu 3707] SDOI2017 相关分析 P3707 [SDOI2017]相关分析 TFRAC FRAC DFRAC \(\tfrac{\sum}{1}\) \(\frac{\s ...

  2. [Luogu 3707] SDOI2017 相关分析

    [Luogu 3707] SDOI2017 相关分析 前言 Capella 和 Frank 一样爱好天文学. 她常在冬季的夜晚,若有所思地望着东北方上空的五边形中,最为耀眼的一个顶点. 那一抹金黄曾带 ...

  3. luogu P3707 [SDOI2017]相关分析

    传送门 对于题目要求的东西,考虑拆开懒得拆了 ,可以发现有\(\sum x\sum y\sum x^2\sum xy\)四个变量影响最终结果,考虑维护这些值 下面记\(l,r\)为区间两端点 首先是区 ...

  4. 多视图学习利器----CCA(典型相关分析)及MATLAB实现

    Hello,我是你们人见人爱花见花开的小花.又和大家见面了,今天我们来聊一聊多视图学习利器------CCA. 一 典型相关分析的基本思想 当我们研究两个变量x和y之间的相关关系的时候,相关系数(相关 ...

  5. SPSS数据分析—基于最优尺度变换的典型相关分析

    传统的典型相关分析只能考虑变量之间的线性相关情况,且必须为连续变量,而我们依然可以使用最优尺度变换来拓展其应用范围,使其可以分析非线性相关.数据为分类数据等情况,并且不再仅限于两个变量间的分析, 虽然 ...

  6. SPSS数据分析—典型相关分析

    我们已经知道,两个随机变量间的相关关系可以用简单相关系数表示,一个随机变量和多个随机变量的相关关系可以用复相关系数表示,而如果需要研究多个随机变量和多个随机变量间的相关关系,则需要使用典型相关分析. ...

  7. Luogu 魔法学院杯-第二弹(萌新的第一法blog)

    虽然有点久远  还是放一下吧. 传送门:https://www.luogu.org/contest/show?tid=754 第一题  沉迷游戏,伤感情 #include <queue> ...

  8. luogu p1268 树的重量——构造,真正考验编程能力

    题目链接:http://www.luogu.org/problem/show?pid=1268#sub -------- 这道题费了我不少心思= =其实思路和标称毫无差别,但是由于不习惯ACM风格的题 ...

  9. SPSS数据分析—相关分析

    相关系数是衡量变量之间相关程度的度量,也是很多分析的中的当中环节,SPSS做相关分析比较简单,主要是区别如何使用这些相关系数,如果不想定量的分析相关性的话,直接观察散点图也可以. 相关系数有一些需要注 ...

随机推荐

  1. Oulipo POJ - 3461(kmp,求重叠匹配个数)

    Problem Description The French author Georges Perec (1936–1982) once wrote a book, La disparition, w ...

  2. mysql数据库的 varchar 和 char 的区别

    char是存储字符(无论字母还是汉字都最多存255个) char(20)表示这个字段最多存20个字符 如果存了16个字符    那么也会占用20个字符的空间 varchar是存储字节(1个字母1个字节 ...

  3. python 基础(十五)--time和datatime模块

    time模块 time.time():返回当前时间,时间戳 time.clock():返回cpu时间(?),当有time.sleep()时,time.clock()不计时 time.localtime ...

  4. 关于BIOS系统的认识和学习(源自摘录)

    BIOS系统的介绍与学习 BIOS (basic input output system 即基本输入输出系统)在计算机系统中起着非常重要的作用,其是计算机系统最底层的设置, BIOS设置程序是被固化到 ...

  5. 怎样快捷获取元素节点head

    1. 使用: document.head document.head.nodeName; // "HEAD" 2. 使用: document.getElementsByTagNam ...

  6. js重点——作用域——内部原理(二)

    本篇是深入分析和理解作用域的第一篇——内部原理和工作模型. 我们知道作用域是变量,对象,函数可访问的一个范围.这说明了我们需要一套良好的规则来存储变量,之后方便查找.所以我们首先要理解的是在哪里而且怎 ...

  7. js之数据类型(对象类型——单体内置对象——Math)

    Math是一个内置对象,它具有数学常数和函数的属性和方法.Math对象用于执行数学任务,和其它对象不同,Math只是一个静态对象并没有Math()构造函数,实际上,Math()只是一个由js设置的对象 ...

  8. liunx pip安装

    方法一 wget https://bootstrap.pypa.io/get-pip.py python get-pip.py 方法二 wget https://pypi.python.org/pac ...

  9. Spring注解实践

    原文:http://blog.csdn.net/xyh820/article/details/7303330 概述 注释配置相对于 XML 配置具有很多的优势: 它可以充分利用 Java 的反射机制获 ...

  10. chrome浏览器重新安装不了

    1.打开注册表方法1. windows键 + R-->输入regedit-->回车方法2.开始-运行里输入regedit方法3.单击任务栏中windows图标,在搜索程序和文件中输入reg ...