#include using namespace std; using Int = long long; template inline void chmin(T1 &a,T2 b){if(a>b) a=b;} template inline void chmax(T1 &a,T2 b){if(a void drop(const T &x){cout<>n>>m>>k; Int res=0; for(Int i=0;i as(m); for(Int j=0;j>as[j]; res+=*max_element(as.begin(),as.end()); } if(res>k) drop(-1); drop(k-res); return 0; }