1. 程式人生 > 實用技巧 >P3674 小清新人渣的本願

P3674 小清新人渣的本願

博主的 BiBi 時間

看到這道題完全無從下手,翻了翻題解。。。屬實 NB

\(\text{Solution}\)

先考慮每一個操作。

  • 操作一:我們要查詢 \(a-b=x\)。其實就是查詢是否存在 \(a,a-x\)。講一下為什麼要選擇這兩個數來查詢,你會發現要求轉化為在 \([l,r]\) 是否有兩個數的距離是 \(x\),我們用 \(\text{bitset}\) 的下標維護某個值是否存在,那麼就可以直接用 \(bit>>x\ \&\ bit\) 來判斷。
  • 操作二:我們要查詢 \(a+b=x\)。這個不太好搞,因為 \(a,b\) 之間沒有 ‘-’,就無法表示距離。這裡有個小技巧:再開一個 \(\text{bitset}\)
    ,第 \(pos\) 位為 \(1\) 表示 \(N-pos\) 這個值出現了。這樣有什麼好處?我們原先在 \(bit\) 裡查詢 \(a=x-b\),現在在 \(abit\) 裡查詢 \(N-a=N-(x-b)=b+(N-x)\)。至此,我們只需要將 \(bit<<(N-x)\ \&\ abit\) 就行了。
  • 操作三:列舉約數判斷即可,這是 \(\mathcal{O(\sqrt n)}\)

總時間複雜度 \(\mathcal O(n*m/64)\) 就艹過去了。

\(\text{Code}\)

#include <cstdio>

#define rep(i,_l,_r) for(register signed i=(_l),_end=(_r);i<=_end;++i)
#define fep(i,_l,_r) for(register signed i=(_l),_end=(_r);i>=_end;--i)
#define erep(i,u) for(signed i=head[u],v=to[i];i;i=nxt[i],v=to[i])
#define efep(i,u) for(signed i=Head[u],v=to[i];i;i=nxt[i],v=to[i])
#define print(x,y) write(x),putchar(y)

template <class T> inline T read(const T sample) {
	T x=0; int f=1; char s;
	while((s=getchar())>'9'||s<'0') if(s=='-') f=-1;
	while(s>='0'&&s<='9') x=(x<<1)+(x<<3)+(s^48),s=getchar();
	return x*f;
}
template <class T> inline void write(const T x) {
	if(x<0) return (void) (putchar('-'),write(-x));
	if(x>9) write(x/10);
	putchar(x%10^48);
}
template <class T> inline T Max(const T x,const T y) {if(x>y) return x; return y;}
template <class T> inline T Min(const T x,const T y) {if(x<y) return x; return y;}
template <class T> inline T fab(const T x) {return x>0?x:-x;}
template <class T> inline T Gcd(const T x,const T y) {return y?Gcd(y,x%y):x;}
template <class T> inline T Swap(T &x,T &y) {x^=y^=x^=y;}

#include <cmath>
#include <bitset>
#include <algorithm>
using namespace std;

const int N=1e5;

int n,m,bl,be[N+5],a[N+5],c[N+5];
bool ans[N+5];
struct node {int op,l,r,x,id;} q[N+5];
bitset <N+5> x,y;

bool cmp(node a,node b) {return (be[a.l]^be[b.l])?be[a.l]<be[b.l]:((be[a.l]&1)?a.r<b.r:a.r>b.r);}

void add(int num) {
	if(c[num]++==0) x[num]=y[N-num]=1;
}

void del(int num) {
	if(--c[num]==0) x[num]=y[N-num]=0;
}

int main() {
	n=read(9),m=read(9); bl=sqrt(n);
	rep(i,1,n) a[i]=read(9),be[i]=(i-1)/bl+1;
	rep(i,1,m) q[i].op=read(9),q[i].l=read(9),q[i].r=read(9),q[i].x=read(9),q[i].id=i;
	sort(q+1,q+m+1,cmp);
	int l=1,r=0;
	rep(i,1,m) {
		while(l>q[i].l) add(a[--l]);
		while(r<q[i].r) add(a[++r]);
		while(l<q[i].l) del(a[l++]);
		while(r>q[i].r) del(a[r--]);
		if(q[i].op==1) {
			if((x>>q[i].x&x).any()) ans[q[i].id]=1;
		}
		else if(q[i].op==2) {
			if((y>>N-q[i].x&x).any()) ans[q[i].id]=1;
		}
		else {
			for(int j=1;j*j<=q[i].x;++j)
				if(q[i].x%j==0&&x[j]&&x[q[i].x/j]) {
					ans[q[i].id]=1;
					break;
				}
		}
	}
	rep(i,1,n) puts(ans[i]?"hana":"bi");
	return 0;
}