0
1
mirror of https://git.sb/baoshuo/OI-codes.git synced 2024-09-20 06:45:26 +00:00
OI-codes/Luogu/problem/P4550/P4550.cpp
2021-07-04 11:17:56 +08:00

18 lines
394 B
C++

#include <bits/stdc++.h>
using namespace std;
int n;
double f[10005], g[10005];
int main() {
cin >> n;
f[n] = g[n] = 0;
for (int i = n - 1; i >= 0; i--) {
f[i] = f[i + 1] + 1.00 * n / (n - i);
g[i] = 1.00 * i / (n - i) * (2 * f[i] + 1) + g[i + 1] + 2 * f[i + 1] + 1;
}
cout << fixed << setprecision(2) << 1.00 * (g[0] + f[0]) / 2 << endl;
return 0;
}