N=int(input()) A=list(map(int,input().split())) if min(A)<=sum(A)<=max(A): print("Yes") else: print("No")