N,S,B=map(int,input().split()) H=list(map(int,input().split())) print("Yes" if max(H[i+1]-H[i] for i in range(N-1)) <= S*B else "No")