n, a, b, x, y = map(int,input().split()) h = list(map(int,input().split())) if sum(h) <= a * x + b * y: print('Yes') else: print('No')