import itertools as iter import collections as coll import heapq as hq import bisect as bis from decimal import Decimal as dec from copy import deepcopy as dcopy import math import sys sys.setrecursionlimit(10**6) def input(): return sys.stdin.readline().rstrip() def getN(): return int(sys.stdin.readline()) def getNs(): return map(int,sys.stdin.readline().split()) def getList(): return list(map(int,sys.stdin.readline().split())) def strinps(n): return [sys.stdin.readline().rstrip() for _ in range(n)] pi = 3.141592653589793 mod = 10**9+7 MOD = 998244353 INF = math.inf dx = [1,0,-1,0]; dy = [0,1,0,-1] """ Main Code """ n,a,b,x,y = getNs() h = getList() hque = [] for i in h: hq.heappush(hque,-i) for _ in [0]*a: hp = hq.heappop(hque) hq.heappush(hque,hp+x) s = 0 while(hque): hp = -hq.heappop(hque) #print(hp) s += max(0,hp) if(s <= y*b): print("Yes") else: print("No")