1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154
| #include <algorithm> #include <iostream> #include <cstring> #include <cstdio> #include <cctype> #include <vector> #include <cmath> using namespace std; #define ll long long #define ri register int
char buf[1 << 20], *p1, *p2; #define getchar() (p1 == p2 && (p2 = (p1 = buf) + fread(buf, 1, 1 << 20, stdin), p1 == p2)?EOF: *p1++) template <typename T> inline void read(T &t) { ri v = getchar();T f = 1;t = 0; while (!isdigit(v)) {if (v == '-')f = -1;v = getchar();} while (isdigit(v)) {t = t * 10 + v - 48;v = getchar();} t *= f; } template <typename T,typename... Args> inline void read(T &t,Args&... args) { read(t);read(args...); }
const int N = 5e5 + 10; const ll mod = 998244353; const int MOD = 65536; const int BASE = 37;
ll pre[N],a[N],n,m;
struct node { int l,r; ll mmax,hash,sum,tag,base; }tree[N<<2];
void pushup(int p) { tree[p].hash = (tree[p<<1].hash + tree[p<<1|1].hash) %mod; tree[p].mmax = max(tree[p<<1].mmax,tree[p<<1|1].mmax); }
void build(int p,int l,int r) { tree[p].l = l,tree[p].r = r; if (l == r) { tree[p].mmax = a[l]; tree[p].hash = (a[l] * pre[l]) % mod; tree[p].base = pre[l]; return ; } int mid = (l + r) >> 1; build(p<<1,l,mid); build(p<<1|1,mid + 1,r); tree[p].base = (tree[p<<1].base + tree[p<<1|1].base) % mod; pushup(p); }
void pushdown(int p) { if (tree[p].tag) { tree[p<<1].mmax += tree[p].tag; tree[p<<1|1].mmax += tree[p].tag; tree[p<<1].tag += tree[p].tag; tree[p<<1|1].tag += tree[p].tag; tree[p<<1].hash = (tree[p<<1].hash + tree[p].tag * tree[p<<1].base) % mod; tree[p<<1|1].hash = (tree[p<<1|1].hash + tree[p].tag * tree[p<<1|1].base) % mod; tree[p].tag = 0; } }
void work(int p,int l,int r) { if (tree[p].mmax < MOD) return ; if (tree[p].l == tree[p].r) { if (tree[p].mmax >= MOD) { tree[p].mmax -= MOD; tree[p].hash = tree[p].sum * pre[l] % mod; } return ; } pushdown(p); int mid = (tree[p].l + tree[p].r) >> 1; if (l <= mid) work(p<<1,l,r); if (r > mid) work(p<<1|1,l,r); pushup(p); }
void change(int p,int l,int r) { if (tree[p].l >= l && tree[p].r <= r) { tree[p].hash = (tree[p].hash + tree[p].base) % mod; tree[p].mmax++; tree[p].tag++; return ; } int mid = (tree[p].l + tree[p].r) >> 1; pushdown(p); if (l <= mid) change(p<<1,l,r); if (r > mid) change(p<<1|1,l,r); pushup(p); }
ll query(int p,int l,int r) { if (tree[p].l >= l && tree[p].r <= r) { return tree[p].hash; } pushdown(p); int mid = (tree[p].l + tree[p].r) >> 1; ll ans = 0; if (r > mid) ans = (ans + query(p<<1|1,l,r)) % mod; if (l <= mid) ans = (ans + (query(p<<1,l,r)) % mod) % mod; return ans; }
ll debug(int p,int l,int r) { if (tree[p].l >= l && tree[p].r <= r) { return tree[p].base; } pushdown(p); int mid = (tree[p].l + tree[p].r) >> 1; ll ans = 0; if (r > mid) ans = (ans + debug(p<<1|1,l,r)) % mod; if (l <= mid) ans = (ans + (debug(p<<1,l,r)) % mod) % mod; return ans; }
signed main() { read(n,m); pre[0] = 1; for (int i = 1;i <= n;++i) { read(a[i]); pre[i] = (pre[i-1] * BASE) % mod; } build(1,1,n); while (m--) { int opt;read(opt); if (opt == 1) { int l,r;read(l,r); change(1,l,r); work(1,1,n); } else { int x1,y1,l;read(x1,y1,l); int x2 = x1 + l - 1,y2 = y1 + l - 1; ll h1 = (query(1,x1,x2) * pre[y1 - x1]) % mod,h2 = query(1,y1,y2); if (h1 == h2) puts("yes"); else puts("no"); }
} return 0; }
|