#include #include #include using namespace std; int main(){ int n, x, m; cin >> n >> x >> m; vector a(n); for(auto &it: a) cin >> it; int b = 0; for(int i = n-1; i >= 0; i--){ int ai = a[i]; for(int j = 0; j < b; j++) ai /= 2; while(ai > x){ if(m < i+1){ cout << "No" << endl; return 0; } b++; ai /= 2; m -= i+1; } } cout << "Yes" << endl; return 0; }