Description
Input
Output
Sample Input
1 1 2 3 4
2 1 1 2
1 1 2 2
3 1 1 1
3 5 5 16
1 2 3 4
Sample Output
yumi
yuno
yuno
yumi
Solution
先莫个队,然后对值域开个$bitset$。
差相等就是$f$并上$f$右移$x$不为$0$。
和相等就是$f$并上翻转的$f$右移$N-x$位不为$0$。
积的话就$sqrt$枚举$x$的的因子然后查询存在性就好了。
Code
1 #include<iostream> 2 #include<cstring> 3 #include<cstdio> 4 #include<bitset> 5 #include<cmath> 6 #include<algorithm> 7 #define N (100000) 8 using namespace std; 9 10 struct Que{int opt,l,r,x,id;}Q[N+1]; 11 int n,m,unit,opt,l,r,x,a[N+1],ID[N+1]; 12 int ans[N+9],Keg[N+9]; 13 bitset<N+1>f,g; 14 15 inline int read() 16 { 17 int x=0,w=1; char c=getchar(); 18 while (!isdigit(c)) {if (c=='-') w=-1; c=getchar();} 19 while (isdigit(c)) x=x*10+c-'0', c=getchar(); 20 return x*w; 21 22 } 23 24 void Ins(int p) 25 { 26 if (!Keg[a[p]]) f[a[p]]=1, g[N-a[p]]=1; 27 ++Keg[a[p]]; 28 } 29 30 void Del(int p) 31 { 32 --Keg[a[p]]; 33 if (!Keg[a[p]]) f[a[p]]=0, g[N-a[p]]=0; 34 } 35 36 bool check(int opt,int x) 37 { 38 if (opt==1) return (f&(f>>x)).any(); 39 if (opt==2) return (f&(g>>(N-x))).any(); 40 if (opt==3) 41 { 42 for (int i=1; i<=sqrt(x); ++i) 43 if (x%i==0 && f[i] && f[x/i]) return 1; 44 return 0; 45 } 46 } 47 48 bool cmp(Que a,Que b) 49 { 50 if (ID[a.l]==ID[b.l]) return a.r<b.r; 51 return ID[a.l]<ID[b.l]; 52 } 53 54 int main() 55 { 56 n=read(); m=read(); unit=sqrt(n); 57 for (int i=1; i<=n; ++i) ID[i]=i/unit; 58 for (int i=1; i<=n; ++i) a[i]=read(); 59 for (int i=1; i<=m; ++i) 60 { 61 opt=read(); l=read(); r=read(); x=read(); 62 Q[i]=(Que){opt,l,r,x,i}; 63 } 64 sort(Q+1,Q+m+1,cmp); 65 int l=1,r=0; 66 for (int i=1; i<=m; ++i) 67 { 68 while (l<Q[i].l) Del(l++); 69 while (l>Q[i].l) Ins(--l); 70 while (r<Q[i].r) Ins(++r); 71 while (r>Q[i].r) Del(r--); 72 ans[Q[i].id]=check(Q[i].opt,Q[i].x); 73 } 74 for (int i=1; i<=m; ++i) puts(ans[i]?"yuno":"yumi"); 75 }