# |
Submission time |
Handle |
Problem |
Language |
Result |
Execution time |
Memory |
144077 |
2019-08-16T01:26:28 Z |
liwi |
Akvizna (COCI19_akvizna) |
C++11 |
|
1500 ms |
57652 KB |
#include <bits/stdc++.h>
#include <ext/pb_ds/assoc_container.hpp>
#include <ext/pb_ds/tree_policy.hpp>
using namespace std;
using namespace __gnu_pbds;
typedef tree<int, null_type, less<int>, rb_tree_tag,tree_order_statistics_node_update> ordered_set;
#define scan(x) do{while((x=getchar())<'0'); for(x-='0'; '0'<=(_=getchar()); x=(x<<3)+(x<<1)+_-'0');}while(0)
char _;
#define complete_unique(a) a.erase(unique(a.begin(),a.end()),a.end())
#define all(a) a.begin(),a.end()
#define println printf("\n");
#define readln(x) getline(cin,x);
#define pb push_back
#define endl "\n"
#define INT_INF 0x3f3f3f3f
#define LL_INF 0x3f3f3f3f3f3f3f3f
#define MOD 1000000007
#define MOD2 1190492669
#define SEED 131
#define mp make_pair
#define fastio cin.tie(0); cin.sync_with_stdio(0);
#define MAXN 3005
#define MAXV 3005
typedef unsigned long long ull;
typedef long long ll;
typedef long double ld;
typedef unordered_map<int,int> umii;
typedef pair<int,int> pii;
typedef pair<double,double> pdd;
typedef pair<ll,ll> pll;
typedef pair<int,pii> triple;
typedef int8_t byte;
mt19937 g1(time(0));
int randint(int a, int b){return uniform_int_distribution<int>(a, b)(g1);}
ll randlong(ll a,ll b){return uniform_int_distribution<long long>(a, b)(g1);}
ll gcd(ll a, ll b){return b == 0 ? a : gcd(b, a % b);}
ll lcm(ll a, ll b){return a*b/gcd(a,b);}
ll fpow(ll b, ll exp, ll mod){if(exp == 0) return 1;ll t = fpow(b,exp/2,mod);if(exp&1) return t*t%mod*b%mod;return t*t%mod;}
ll divmod(ll i, ll j, ll mod){i%=mod,j%=mod;return i*fpow(j,mod-2,mod)%mod;}
struct node{
int l,r;
pair<int,pdd> bst;
};
struct MaxLiChaoTree{
node seg[4*MAXV];
inline double calc(int rt, int m){return seg[rt].bst.second.first*m+seg[rt].bst.second.second;}
inline double calc(pdd bst, int m){return bst.first*m+bst.second;}
inline ld inter(pdd f, pdd s){return (s.second-f.second)/(f.first-s.first);}
void build(int l, int r, int rt){
seg[rt].l = l, seg[rt].r = r, seg[rt].bst = mp(-1,mp(0,-LL_INF));
if(l == r) return;
int mid = (l+r)/2;
build(l,mid,rt<<1);
build(mid+1,r,rt<<1|1);
}
void add_line(int rt, pair<int,pdd> line){
if(seg[rt].l == seg[rt].r){
if(calc(line.second,seg[rt].l) >= calc(rt,seg[rt].l)) seg[rt].bst = line;
return;
}
int mid = (seg[rt].l+seg[rt].r)/2;
bool f = calc(rt,seg[rt].l) <= calc(line.second,seg[rt].l);
bool s = calc(rt,seg[rt].r) <= calc(line.second,seg[rt].r);
if(f && s){
seg[rt].bst = line;
return;
}else if(!f && !s) return;
ld x = inter(line.second,seg[rt].bst.second);
if(x <= mid){
if(calc(line.second,mid) >= calc(rt,mid)) swap(line,seg[rt].bst);
add_line(rt<<1,line);
}else{
if(calc(line.second,mid) >= calc(rt,mid)) swap(line,seg[rt].bst);
add_line(rt<<1|1,line);
}
}
pair<double,int> get(int rt, int pos){
if(seg[rt].l == seg[rt].r) return mp(calc(rt,pos),seg[rt].bst.first);
int mid = (seg[rt].l+seg[rt].r)/2;
if(pos <= mid) return max(mp(calc(rt,pos),seg[rt].bst.first),get(rt<<1,pos));
return max(mp(calc(rt,pos),seg[rt].bst.first),get(rt<<1|1,pos));
}
};
int N,K;
double dp2[MAXN][MAXN];
pair<double,int> dp[MAXN];
MaxLiChaoTree t;
inline int getGroups(double C){
t.build(1,N,1);
t.add_line(1,mp(0,mp(0,0)));
for(int k=1; k<=N; k++){
pair<double,int> q = t.get(1,k);
dp[k] = mp((q.first+k)/k-C,dp[q.second].second+1);
t.add_line(1,mp(k,mp(dp[k].first,-k)));
}
return dp[N].second;
}
inline double solve(){
for(int k=1; k<=K; k++){
t.build(1,N,1);
t.add_line(1,mp(0,mp(0,0)));
for(int i=1; i<=N; i++){
dp2[k][i] = (t.get(1,i).first+i)/i;
t.add_line(1,mp(i,mp(dp2[k-1][i],-i)));
}
}
return dp2[K][N];
}
int main(){
scanf("%d %d",&N,&K);
// double low = 0, high = 20, ans = 0;
// while(high-low >= 1e-15){
// double mid = (low+high)/2;
// int g = getGroups(mid);
// if(g <= K){
// ans = mid;
// high = mid-1e-15;
// }else low = mid+1e-15;
// }
// getGroups(ans);
double res = solve(); //dp[N].first-ans*K;
printf("%.8f\n",res);
}
/*
2 1
ans=1.5
*/
Compilation message
akvizna.cpp: In function 'int main()':
akvizna.cpp:123:7: warning: ignoring return value of 'int scanf(const char*, ...)', declared with attribute warn_unused_result [-Wunused-result]
scanf("%d %d",&N,&K);
~~~~~^~~~~~~~~~~~~~~
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Correct |
3 ms |
888 KB |
Output is correct |
2 |
Correct |
3 ms |
888 KB |
Output is correct |
3 |
Correct |
3 ms |
1012 KB |
Output is correct |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Correct |
3 ms |
760 KB |
Output is correct |
2 |
Correct |
3 ms |
1016 KB |
Output is correct |
3 |
Correct |
3 ms |
1016 KB |
Output is correct |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Correct |
2 ms |
760 KB |
Output is correct |
2 |
Correct |
3 ms |
888 KB |
Output is correct |
3 |
Correct |
3 ms |
1016 KB |
Output is correct |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Incorrect |
2 ms |
760 KB |
Output isn't correct |
2 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Correct |
276 ms |
10452 KB |
Output is correct |
2 |
Correct |
1169 ms |
37388 KB |
Output is correct |
3 |
Execution timed out |
1559 ms |
53720 KB |
Time limit exceeded |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Correct |
383 ms |
13548 KB |
Output is correct |
2 |
Correct |
1012 ms |
33016 KB |
Output is correct |
3 |
Execution timed out |
1551 ms |
52620 KB |
Time limit exceeded |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Correct |
313 ms |
11028 KB |
Output is correct |
2 |
Correct |
661 ms |
25256 KB |
Output is correct |
3 |
Execution timed out |
1584 ms |
57652 KB |
Time limit exceeded |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Correct |
387 ms |
13956 KB |
Output is correct |
2 |
Correct |
956 ms |
30300 KB |
Output is correct |
3 |
Execution timed out |
1535 ms |
52664 KB |
Time limit exceeded |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Correct |
262 ms |
9548 KB |
Output is correct |
2 |
Correct |
902 ms |
29928 KB |
Output is correct |
3 |
Correct |
1432 ms |
51440 KB |
Output is correct |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Correct |
255 ms |
10204 KB |
Output is correct |
2 |
Correct |
1295 ms |
41104 KB |
Output is correct |
3 |
Execution timed out |
1533 ms |
49676 KB |
Time limit exceeded |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Correct |
244 ms |
8972 KB |
Output is correct |
2 |
Correct |
1297 ms |
41236 KB |
Output is correct |
3 |
Execution timed out |
1540 ms |
50220 KB |
Time limit exceeded |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Correct |
236 ms |
8952 KB |
Output is correct |
2 |
Correct |
937 ms |
31084 KB |
Output is correct |
3 |
Execution timed out |
1545 ms |
52624 KB |
Time limit exceeded |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Correct |
357 ms |
12600 KB |
Output is correct |
2 |
Correct |
1049 ms |
35960 KB |
Output is correct |
3 |
Execution timed out |
1571 ms |
53444 KB |
Time limit exceeded |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Execution timed out |
1509 ms |
8568 KB |
Time limit exceeded |
2 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Execution timed out |
1559 ms |
8572 KB |
Time limit exceeded |
2 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Execution timed out |
1587 ms |
8564 KB |
Time limit exceeded |
2 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Execution timed out |
1561 ms |
8568 KB |
Time limit exceeded |
2 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Execution timed out |
1563 ms |
8568 KB |
Time limit exceeded |
2 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Execution timed out |
1554 ms |
8568 KB |
Time limit exceeded |
2 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Execution timed out |
1579 ms |
8568 KB |
Time limit exceeded |
2 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Execution timed out |
1569 ms |
8568 KB |
Time limit exceeded |
2 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Execution timed out |
1569 ms |
8568 KB |
Time limit exceeded |
2 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Execution timed out |
1567 ms |
8568 KB |
Time limit exceeded |
2 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Execution timed out |
1569 ms |
8568 KB |
Time limit exceeded |
2 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Execution timed out |
1573 ms |
8568 KB |
Time limit exceeded |
2 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Execution timed out |
1570 ms |
8444 KB |
Time limit exceeded |
2 |
Halted |
0 ms |
0 KB |
- |