n, s, b = map(int, input().split()) hl = list(map(int, input().split())) h = hl[0] for g in hl[1:]: if h + s*b < g: print("No") exit() h = g print("Yes")