import sys input = sys.stdin.readline class UnionFind(object): def __init__(self, n=1): self.par = [i for i in range(n)] self.rank = [0 for _ in range(n)] self.size = [1 for _ in range(n)] def find(self, x): if self.par[x] == x: return x else: self.par[x] = self.find(self.par[x]) return self.par[x] def union(self, x, y): x = self.find(x) y = self.find(y) if x != y: if self.rank[x] < self.rank[y]: x, y = y, x if self.rank[x] == self.rank[y]: self.rank[x] += 1 self.par[y] = x self.size[x] += self.size[y] def is_same(self, x, y): return self.find(x) == self.find(y) def get_size(self, x): x = self.find(x) return self.size[x] N, Q = map(int, input().split()) P = list(map(int, input().split())) U = UnionFind(N) for i in range(N): if P[i] == -1: continue U.union(i, P[i] - 1) for _ in range(Q): A, B = map(int, input().split()) A, B = A - 1, B - 1 print("Yes") if U.is_same(A, B) else print("No")