n, s, b = map(int, input().split()) h = list(map(int, input().split())) p = h[0] ok = 1 for i in range(1, n): if p < h[i]: if s*b < h[i] - p: ok = 0 p = h[i] print("Yes" if ok else "No")