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