#include using namespace std; /* #ifndef ONLINE_JUDGE #include #include using bll = boost::multiprecision::cpp_int; using bdouble = boost::multiprecision::cpp_dec_float_100; using namespace boost::multiprecision; #endif */ #ifdef LOCAL_DEV void debug_impl() { std::cerr << '\n'; } template void debug_impl(Head head, Tail... tail) { std::cerr << " " << head << (sizeof...(tail) ? "," : ""); debug_impl(tail...); } #define debug(...) do { std::cerr << "(" << #__VA_ARGS__ << ") ="; debug_impl(__VA_ARGS__); } while (false) #else #define debug(...) do {} while (false) #endif #ifdef LOCAL_TEST #define BOOST_STACKTRACE_USE_ADDR2LINE #define BOOST_STACKTRACE_ADDR2LINE_LOCATION /usr/local/opt/binutils/bin/addr2line #define _GNU_SOURCE #include namespace std { template class dvector : public std::vector { public: dvector() : std::vector() {} explicit dvector(size_t n, const T& value = T()) : std::vector(n, value) {} dvector(const std::vector& v) : std::vector(v) {} dvector(const std::initializer_list il) : std::vector(il) {} dvector(const std::string::iterator first, const std::string::iterator last) : std::vector(first, last) {} dvector(const typename std::vector::iterator first, const typename std::vector::iterator last) : std::vector(first, last) {} dvector(const typename std::vector::reverse_iterator first, const typename std::vector::reverse_iterator last) : std::vector(first, last) {} dvector(const typename std::vector::const_iterator first, const typename std::vector::const_iterator last) : std::vector(first, last) {} dvector(const typename std::vector::const_reverse_iterator first, const typename std::vector::const_reverse_iterator last) : std::vector(first, last) {} T& operator[](size_t n) { try { return this->at(n); } catch (const std::exception& e) { std::cerr << boost::stacktrace::stacktrace() << '\n'; return this->at(n); } } const T& operator[](size_t n) const { try { return this->at(n); } catch (const std::exception& e) { std::cerr << boost::stacktrace::stacktrace() << '\n'; return this->at(n); } } }; } class dbool { private: bool boolvalue; public: dbool() : boolvalue(false) {} dbool(bool b) : boolvalue(b) {} dbool(const dbool& b) : boolvalue(b.boolvalue) {} operator bool&() { return boolvalue; } operator const bool&() const { return boolvalue; } }; template std::ostream& operator<<(std::ostream& s, const std::dvector& v) { for (size_t i = 0; i < v.size(); ++i){ s << v[i]; if (i < v.size() - 1) s << "\t"; } return s; } template std::ostream& operator<<(std::ostream& s, const std::dvector>& vv) { s << "\\\n"; for (size_t i = 0; i < vv.size(); ++i){ s << vv[i] << "\n"; } return s; } template std::ostream& operator<<(std::ostream& s, const std::deque& v) { for (size_t i = 0; i < v.size(); ++i){ s << v[i]; if (i < v.size() - 1) s << "\t"; } return s; } template std::ostream& operator<<(std::ostream& s, const std::set& se) { s << "{ "; for (auto itr = se.begin(); itr != se.end(); ++itr){ s << (*itr) << "\t"; } s << "}"; return s; } template std::ostream& operator<<(std::ostream& s, const std::multiset& se) { s << "{ "; for (auto itr = se.begin(); itr != se.end(); ++itr){ s << (*itr) << "\t"; } s << "}"; return s; } template std::ostream& operator<<(std::ostream& s, const std::array& a) { s << "{ "; for (size_t i = 0; i < N; ++i){ s << a[i] << "\t"; } s << "}"; return s; } template std::ostream& operator<<(std::ostream& s, const std::map& m) { s << "{\n"; for (auto itr = m.begin(); itr != m.end(); ++itr){ s << "\t" << (*itr).first << " : " << (*itr).second << "\n"; } s << "}"; return s; } template std::ostream& operator<<(std::ostream& s, const std::pair& p) { return s << "(" << p.first << ", " << p.second << ")"; } #define vector dvector #define bool dbool class SIGFPE_exception : std::exception {}; class SIGSEGV_exception : std::exception {}; void catch_SIGFPE(int e) { std::cerr << boost::stacktrace::stacktrace() << '\n'; throw SIGFPE_exception(); } void catch_SIGSEGV(int e) { std::cerr << boost::stacktrace::stacktrace() << '\n'; throw SIGSEGV_exception(); } signed convertedmain(); signed main() { signal(SIGFPE, catch_SIGFPE); signal(SIGSEGV, catch_SIGSEGV); return convertedmain(); } #define main() convertedmain() #endif //#define int long long using ll = long long; //constexpr int INF = 1e9;//INT_MAX=(1<<31)-1=2147483647 constexpr ll INF = (ll)1e18;//(1LL<<63)-1=9223372036854775807 constexpr ll MOD = (ll)1e9 + 7; constexpr double EPS = 1e-9; constexpr ll dx[4] = {1LL, 0LL, -1LL, 0LL}; constexpr ll dy[4] = {0LL, 1LL, 0LL, -1LL}; constexpr ll dx8[8] = {1LL, 0LL, -1LL, 0LL, 1LL, 1LL, -1LL, -1LL}; constexpr ll dy8[8] = {0LL, 1LL, 0LL, -1LL, 1LL, -1LL, 1LL, -1LL}; #define rep(i, n) for(ll i=0, i##_length=(n); i< i##_length; ++i) #define repeq(i, n) for(ll i=1, i##_length=(n); i<=i##_length; ++i) #define rrep(i, n) for(ll i=(n)-1; i>=0; --i) #define rrepeq(i, n) for(ll i=(n) ; i>=1; --i) #define all(v) (v).begin(), (v).end() #define rall(v) (v).rbegin(), (v).rend() void p() { std::cout << '\n'; } template void p(Head head, Tail... tail) { std::cout << head << (sizeof...(tail) ? " " : ""); p(tail...); } template inline void pv(std::vector& v) { for(ll i=0, N=v.size(); i inline T gcd(T a, T b) { return b ? gcd(b,a%b) : a; } template inline T lcm(T a, T b) { return a / gcd(a, b) * b; } template inline bool chmax(T& a, T b) { return a < b && (a = b, true); } template inline bool chmin(T& a, T b) { return a > b && (a = b, true); } template inline void uniq(std::vector& v) { v.erase(std::unique(v.begin(), v.end()), v.end()); } /*-----8<-----template-----8<-----*/ /*-----8<-----library-----8<-----*/ void solve() { ll N,X,Y,Z; cin>>N>>X>>Y>>Z; vector a(N); rep(i,N)cin>>a[i]; rep(i,N){ a[i]+=1000; a[i]-=a[i]%1000; if(1000*X+5000*Y+10000*Z < a[i]){ p("No");return; } ll t=a[i]; ll x=0,y=0,z=0; z=min(t/10000,Z); t-=10000*z; y=min(t/5000,Y); t-=5000*y; x=min(t/1000,X); t-=1000*x; if(t>0){ ll ynokori=Y-y; ll tt=(t+5000-1)/5000; ll maisu=min(tt,ynokori); t-=5000*maisu; y+=maisu; if(maisu>0){ assert(x<=4); x=0; } } if(t>0){ ll znokori=Z-z; ll tt=(t+10000-1)/10000; ll maisu=min(tt,znokori); t-=10000*maisu; z+=maisu; if(maisu>0){ assert(x<=4); assert(y<=1); y=0;x=0; } } ll ynokori=Y-y; t=min(ynokori, x/5); x-=5*t; y+=t; ll znokori=Z-z; t=min(znokori, y/2); y-=2*t; z+=t; debug(x,y,z); X-=x; Y-=y; Z-=z; } p("Yes"); } signed main() { solve(); return 0; }