#pragma GCC optimize("Ofast")
#include<bits/stdc++.h>
using namespace std;
#define pb push_back
#define fi first
#define se second
#define sz(a) (int)(a.size())
#define all(a) a.begin(),a.end()
#define lb lower_bound
#define ub upper_bound
#define owo ios_base::sync_with_stdio(0);cin.tie(0);
#define debug(...) fprintf(stderr, __VA_ARGS__),fflush(stderr)
#define time__(d) for(long blockTime = 0; (blockTime == 0 ? (blockTime=clock()) != 0 : false);\
debug("%s time : %.4fs\n", d, (double)(clock() - blockTime) / CLOCKS_PER_SEC))
typedef long long int ll;
typedef long double ld;
typedef pair<ll,ll> PII;
typedef pair<int,int> pii;
typedef vector<vector<int>> vii;
typedef vector<vector<ll>> VII;
ll gcd(ll a,ll b){if(!b)return a;else return gcd(b,a%b);}
ld dp[555][555];
int main()
{
owo
int n,K;
cin>>n>>K;
vector<PII>t(n);
vector<ld>a(n),b(n);
for(int i=0;i<n;i++){
cin>>t[i].se>>t[i].fi;
if(t[i].fi == -1)t[i].fi = 1e18;
}
sort(all(t));
for(int i=0;i<n;i++){
a[i] = t[i].se;
b[i] = t[i].fi;
if(b[i] == 1e18)b[i] = -1;
}
vector<vector<ld>> suff(n+1);
for(int i=0;i<n;i++){
for(int j=0;j<=i;j++){
suff[i+1].pb(a[n-j-1]);
}
sort(all(suff[i+1]));
}
ld ans = 1e18;
for(int k=0;k<n;k++){
for(int i=0;i<n;i++){
for(int j=0;j<=n;j++)dp[i][j] = 1e18;
}
dp[0][0] = a[0]/(k+1);
if(b[0] != -1)dp[0][1] = b[0];
for(int i=1;i<n;i++){
for(int j=0;j<=i+1;j++){
dp[i][j] = min(dp[i][j],dp[i-1][j] + a[i]/(k+1));
if(j && b[i] != -1){
dp[i][j] = min(dp[i][j],dp[i-1][j-1] + b[i]/j);
}
}
}
// for(int i=0;i<n;i++){
// for(int j=0;j<=i+1;j++)cout<<dp[i][j]<<" ";
// cout<<'\n';
// }
for(int i=0;i<K;i++){
ld cost = dp[i][k];
vector<ld>lf;
for(int j=0;j<K-i-1;j++)cost += suff[K-i-1][j]/(k+1);
ans = min(ans,cost);
}
}
cout<<fixed<<setprecision(5)<<ans<<'\n';
}
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Correct |
1 ms |
348 KB |
Output is correct |
2 |
Correct |
0 ms |
348 KB |
Output is correct |
3 |
Correct |
0 ms |
348 KB |
Output is correct |
4 |
Correct |
0 ms |
348 KB |
Output is correct |
5 |
Correct |
1137 ms |
7260 KB |
Output is correct |
6 |
Correct |
1103 ms |
7260 KB |
Output is correct |
7 |
Correct |
1190 ms |
7260 KB |
Output is correct |
8 |
Correct |
1213 ms |
7260 KB |
Output is correct |
9 |
Correct |
1262 ms |
7476 KB |
Output is correct |
10 |
Correct |
1313 ms |
7260 KB |
Output is correct |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Correct |
1 ms |
348 KB |
Output is correct |
2 |
Correct |
0 ms |
348 KB |
Output is correct |
3 |
Correct |
0 ms |
348 KB |
Output is correct |
4 |
Correct |
0 ms |
348 KB |
Output is correct |
5 |
Correct |
1137 ms |
7260 KB |
Output is correct |
6 |
Correct |
1103 ms |
7260 KB |
Output is correct |
7 |
Correct |
1190 ms |
7260 KB |
Output is correct |
8 |
Correct |
1213 ms |
7260 KB |
Output is correct |
9 |
Correct |
1262 ms |
7476 KB |
Output is correct |
10 |
Correct |
1313 ms |
7260 KB |
Output is correct |
11 |
Correct |
1 ms |
344 KB |
Output is correct |
12 |
Correct |
1478 ms |
7476 KB |
Output is correct |
13 |
Incorrect |
1275 ms |
7260 KB |
Output isn't correct |
14 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Incorrect |
0 ms |
348 KB |
Output isn't correct |
2 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Incorrect |
0 ms |
348 KB |
Output isn't correct |
2 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Incorrect |
0 ms |
348 KB |
Output isn't correct |
2 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Correct |
1510 ms |
7256 KB |
Output is correct |
2 |
Correct |
1499 ms |
7480 KB |
Output is correct |
3 |
Correct |
1976 ms |
7476 KB |
Output is correct |
4 |
Correct |
1608 ms |
7476 KB |
Output is correct |
5 |
Correct |
1469 ms |
7476 KB |
Output is correct |
6 |
Correct |
1502 ms |
7476 KB |
Output is correct |
7 |
Correct |
1420 ms |
7260 KB |
Output is correct |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Correct |
1 ms |
348 KB |
Output is correct |
2 |
Correct |
0 ms |
348 KB |
Output is correct |
3 |
Correct |
0 ms |
348 KB |
Output is correct |
4 |
Correct |
0 ms |
348 KB |
Output is correct |
5 |
Correct |
1137 ms |
7260 KB |
Output is correct |
6 |
Correct |
1103 ms |
7260 KB |
Output is correct |
7 |
Correct |
1190 ms |
7260 KB |
Output is correct |
8 |
Correct |
1213 ms |
7260 KB |
Output is correct |
9 |
Correct |
1262 ms |
7476 KB |
Output is correct |
10 |
Correct |
1313 ms |
7260 KB |
Output is correct |
11 |
Correct |
1 ms |
344 KB |
Output is correct |
12 |
Correct |
1478 ms |
7476 KB |
Output is correct |
13 |
Incorrect |
1275 ms |
7260 KB |
Output isn't correct |
14 |
Halted |
0 ms |
0 KB |
- |