//#define _GLIBCXX_DEBUG #include using namespace std; #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 = 0xccccccc; const ll LINF = 0xcccccccccccccccLL; 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;} //head int main() { ios::sync_with_stdio(false); cin.tie(0); int n, m; cin >> n >> m; vi b(m); for(auto &x:b) cin >> x; double sum = 0; int cnt = 0; double ans = 1e100; reverse(all(b)); for(auto x:b) { sum += n-x; cnt++; chmin(ans, (cnt == m?n-1.:b.back()-1+sum/cnt+double(m)/cnt)); } cout << fixed << setprecision(10) << ans << endl; }