#include using namespace std; int rt[200005]; int rnk[200005]; int getroot(int n){ if(rt[n]==-1)return n; return rt[n]=getroot(rt[n]); } void unite(int a,int b){ a=getroot(a),b=getroot(b); if(a!=b){ if(rnk[a]>rnk[b])swap(a,b); if(rnk[a]==rnk[b]){ rnk[b]+=1; } rt[a]=b; } } int main(){ ios::sync_with_stdio(false); cin.tie(nullptr); int N,Q; cin>>N>>Q; fill(rt,rt+N,-1); for(int i=0;i>P; if(P!=-1){ unite(i,P-1); } } while(Q--){ int A,B; cin>>A>>B; cout<<(getroot(A-1)==getroot(B-1)?"Yes\n":"No\n"); } }