己所欲者,杀而夺之,亦同天赐

解题思路

一定不要用自动溢出的 Hash!!!!!!!

我真的是调吐了。。。

思路非常简单明了 : 需要我们创新一下 Hash。

首先我们的 Hash 要满足无序性。。

因此我们可以把 Hash 值的意义更改一下。

例如: \(x\) 的 Hash 值是 \(base^x\)

在每两个区间维护两个值:原序列最小值以及 Hash 值的加和

这里不可以记录 Hash 因为取 \(\bmod\) 之后大小就不一定了。。

然后直接线段树维护就好了。。。

一定不要用自动溢出的 Hash!!!!!!!

不然哪怕是用 6 个 Hash 也过不了(记录

然后拍了大概 1e5 组数据,也没拍出错来。。。

感谢@OMA dalao 指出要 取 \(\bmod\),不然我就要 N Hash 了。。

code

  1. #include<bits/stdc++.h>
  2. #define int long long
  3. #define ull unsigned long long
  4. #define f() cout<<"Pass"<<endl
  5. #define ls x<<1
  6. #define rs x<<1|1
  7. using namespace std;
  8. inline int read()
  9. {
  10. int x=0,f=1;
  11. char ch=getchar();
  12. while(ch>'9'||ch<'0')
  13. {
  14. if(ch=='-') f=-1;
  15. ch=getchar();
  16. }
  17. while(ch>='0'&&ch<='9')
  18. {
  19. x=(x<<1)+(x<<3)+(ch^48);
  20. ch=getchar();
  21. }
  22. return x*f;
  23. }
  24. const int N=1e6+10,INF=1e18,mod=998244353;
  25. const ull base=168717137ull;
  26. int n,m,s[N];
  27. ull p[N];
  28. long double p6[N];
  29. struct Node
  30. {
  31. int mn;
  32. ull has;
  33. long double has6;
  34. Node friend operator + (Node x,Node y)
  35. {
  36. return (Node){min(x.mn,y.mn),(x.has+y.has)%mod};
  37. }
  38. };
  39. struct Segment_Tree
  40. {
  41. int mn;
  42. ull has;
  43. long double has6;
  44. }tre[N<<2];
  45. void push_up(int x)
  46. {
  47. tre[x].has=(tre[ls].has+tre[rs].has)%mod;
  48. tre[x].mn=min(tre[ls].mn,tre[rs].mn);
  49. }
  50. void insert(int x,int l,int r,int pos,int num)
  51. {
  52. if(l==r)
  53. {
  54. tre[x].has=p[num]%mod;
  55. tre[x].mn=num;
  56. return ;
  57. }
  58. int mid=(l+r)>>1;
  59. if(pos<=mid) insert(ls,l,mid,pos,num);
  60. else insert(rs,mid+1,r,pos,num);
  61. push_up(x);
  62. }
  63. Node query(int x,int l,int r,int L,int R)
  64. {
  65. if(L<=l&&r<=R) return (Node){tre[x].mn,tre[x].has};
  66. int mid=(l+r)>>1;
  67. Node ans1=(Node){INF,0ull},ans2=(Node){INF,0ull};
  68. if(L<=mid) ans1=query(ls,l,mid,L,R);
  69. if(R>mid) ans2=query(rs,mid+1,r,L,R);
  70. return ans1+ans2;
  71. }
  72. signed main()
  73. {
  74. n=read();
  75. m=read();
  76. p[0]=1;
  77. for(int i=1;i<N;i++) p[i]=p[i-1]*base%mod;
  78. for(int i=1;i<=n;i++)
  79. s[i]=read();
  80. for(int i=1;i<=n;i++)
  81. insert(1,1,n,i,s[i]);
  82. for(int i=1,opt,x,y,l1,r1,l2,r2;i<=m;i++)
  83. {
  84. opt=read();
  85. if(!opt)
  86. {
  87. x=read();y=read();
  88. insert(1,1,n,x,y);
  89. continue;
  90. }
  91. l1=read();r1=read();l2=read();r2=read();
  92. Node ans1=query(1,1,n,l1,r1);
  93. Node ans2=query(1,1,n,l2,r2);
  94. if(ans1.mn<ans2.mn) swap(ans1,ans2);
  95. if(p[ans1.mn-ans2.mn]*ans2.has%mod==ans1.has%mod)
  96. printf("YES\n");
  97. else printf("NO\n");
  98. }
  99. return 0;
  100. }

题解 P6688 可重集的更多相关文章

  1. 生成1~n的排列,以及生成可重集的排列

    #include <iostream> using namespace std; void printPermutation(int n, int* A, int cur) { if (c ...

  2. 非负整数可重集去重&排序+获得可重集的全排列的几种方法

    非负整数可重集O(n)去重并排序 可重集是指元素可重复的集合,对于在一定区间内的正整数集,比如[1,n],我们可以在不不使用任何额外空间(包括不使用O(1)的空间)的情况下,用O(n)的时间复杂度完成 ...

  3. 生成1~n的排列(模板),生成可重集的排列(对应紫书P184, P185)

    生成1~n的排列: #include<iostream> using namespace std; void print_permutation(int n, int *A, int cu ...

  4. codevs 1229 数字游戏(可重集的全排列)

    传送门 Description Lele 最近上课的时候都很无聊,所以他发明了一个数字游戏来打发时间.  这个游戏是这样的,首先,他拿出几张纸片,分别写上0到9之间的任意数字(可重复写某个数字),然后 ...

  5. 【NOI2018】归程 题解(kruskal重构树+最短路)

    题目链接 题目大意:给定一张$n$个点$m$条边的无向图.每条边有长度和海拔.有$Q$次询问,每次给定起点$v$和当天水位线$p$,每次终点都是$1$.人可以选择坐车或走路,车只能在海拔大于水位线的路 ...

  6. 【HNOI2012】永无乡 题解(并查集+线段树合并)

    题目链接 给定一张含$n$个点$m$条边的无向图,每个点有一个重要指数$a_i$.有两种操作:1.在$x$和$y$之间连一条边:2.求$x$所在连通块中重要程度第$k$小的点. ----------- ...

  7. STL next_permutation(a,a+n) 生成一个序列的全排列。满足可重集。

    /** 题目: 链接: 题意: 思路: */ #include <iostream> #include <cstdio> #include <vector> #in ...

  8. 求重集的r-组合

    具体的就不在这里说了,如果有兴趣的可以把我的工程包下载下来看,留个URL http://pan.baidu.com/s/1bnes1HX

  9. 生成可重集的排序 (白书P184)

    #include<iostream> #include<cstdio> #include<cstring> #include<algorithm> us ...

随机推荐

  1. excel vba的inputBox函数

    Sub test1()    Dim h    Dim j As Integer    j = 0    Dim n1 As Integer '分行单元格在第几列    Dim m1 As Integ ...

  2. 【LeetCode每日一题 Day 2】2. 两数相加

    大家好,我是编程熊,今天是LeetCode每日一题的第二天,一起学习的是LeetCode第二题<两数相加>. 题意 给你两个 非空 的链表,表示两个非负的整数.它们每位数字都是按照 逆序 ...

  3. git schnnel failed to receive handshake, SSLTLS connection failed

    git schnnel failed to receive handshake, SSLTLS connection failed 报错,查看原因为git安装时ssl选择的不是openssl.重新安装 ...

  4. 基于C#的socket编程的TCP同步实现

    该博客源著地址https://www.cnblogs.com/sunev/archive/2012/08/05/2604189.html 一.摘要 总结一下基于C#的TCP传输协议的涉及到的常用方法及 ...

  5. SpringBoot Validation参数校验 详解自定义注解规则和分组校验

    前言 Hibernate Validator 是 Bean Validation 的参考实现 .Hibernate Validator 提供了 JSR 303 规范中所有内置 constraint 的 ...

  6. Rsync+Sersync数据实时同步(双向)

    Rsync+Sersync数据实时同步(双向) 服务介绍 一.为什么要用rsync+sersync架构? 1.sersync是基于inotify开发的,类似于inotify-tools的工具 2.se ...

  7. 面试:Spring面试知识点总结

    Spring知识点总结 1. 简介一下Spring框架. 答:Spring框架是一个开源的容器性质的轻量级框架.主要有三大特点:容器.IOC(控制反转).AOP(面向切面编程). 2. Spring框 ...

  8. phpredis中文手册

    本文是参考<redis中文手册>,将示例代码用php来实现,注意php-redis与redis_cli的区别(主要是返回值类型和参数用法). 目录(使用CTRL+F快速查找命令): Key ...

  9. linux之软连接 硬链接 link ln

    p.p1 { margin: 0; font: 12px "Helvetica Neue"; color: rgba(220, 161, 13, 1) } p.p2 { margi ...

  10. 32. Longest Valid Parentheses **堆栈

    description: Given a string containing just the characters '(' and ')', find the length of the longe ...