This submission is migrated from previous version of oj.uz, which used different machine for grading. This submission may have different result if resubmitted.
#include <bits/stdc++.h>
#define int long long
using namespace std;
using pii = pair<int, int>;
void solve()
{
int n, kk;
cin >> n >> kk;
vector<pii> v(n);
for (auto &[b, a] : v)
{
cin >> a >> b;
if (b == -1)
b = INT_MAX;
}
cout << fixed << setprecision(5);
sort(v.begin(), v.end());
// for (auto &[b, a] : v)
// if (b == INT_MAX)
// b = -1;
vector<int> a(n), b(n);
for (int i = 0; i < n; ++i)
a[i] = v[i].second, b[i] = v[i].first;
double ans = 1e15;
for (int goal = 1; goal <= kk + 1; ++goal)
{
vector<vector<vector<double>>> dp(n + 1, vector<vector<double>>(kk + 1, vector<double>(goal + 1, 1e15)));
dp[0][0][1] = 0;
for (int i = 0; i < n; ++i)
{
dp[i + 1] = dp[i];
for (int j = 0; j < kk; ++j)
{
for (int k = 1; k <= goal; ++k)
{
dp[i + 1][j + 1][k] = min(dp[i + 1][j + 1][k], dp[i][j][k] + 1.0 * a[i] / goal);
if (k != goal)
dp[i + 1][j + 1][k + 1] = min(dp[i + 1][j + 1][k + 1], dp[i][j][k] + 1.0 * b[i] / k);
}
}
}
ans = min(ans, dp[n][kk][goal]);
}
cout << ans << '\n';
}
signed main()
{
ios::sync_with_stdio(0);
cin.tie(0);
solve();
return 0;
}
Compilation message (stderr)
Main.cpp: In function 'void solve()':
Main.cpp:11:16: warning: structured bindings only available with '-std=c++17' or '-std=gnu++17'
11 | for (auto &[b, a] : v)
| ^
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |