N, S, B = map(int, input().split()) H = list(map(int, input().split())) pv = H[0] for h in H: if pv < h: if h - pv > S * B: print('No') exit() pv = h print('Yes')