N,X,Y = map(int,input().split()) R = list(map(int,input().split())) if (2*sum(R)-R[0]-R[-1])**2>=X**2+Y**2: print("Yes") else: print("No")