//#define _GLIBCXX_DEBUG #include #define rep(i, n) for(int i=0; i; using vs = vector; using vi = vector; using vvi = vector; template using PQ = priority_queue; template using PQG = priority_queue, greater >; const int INF = 100010001; const ll LINF = (ll)INF*INF*10; template inline bool chmax(T1 &a, T2 b) {return a < b && (a = b, true);} template inline bool chmin(T1 &a, T2 b) {return a > b && (a = b, true);} template istream &operator>>(istream &is, pair &p) { return is >> p.first >> p.second;} template ostream &operator<<(ostream &os, const pair &p) { return os << p.first << ' ' << p.second;} const int N = 100010; //head int c, n; int a[110]; int dp[N]; int main() { ios::sync_with_stdio(false); cin.tie(0); cin >> c >> n; rep(i, n) cin >> a[i]; fill(dp+1, dp+c+1, INF); rep(i, n) { rep(j, c-a[i]+1) { chmin(dp[j+a[i]], dp[j]+1); } } if(dp[c] == INF) cout << -1 << endl; else cout << dp[c] << endl; }