Submission #144078

# Submission time Handle Problem Language Result Execution time Memory
144078 2019-08-16T01:28:40 Z liwi Akvizna (COCI19_akvizna) C++11
20 / 130
1500 ms 57628 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+1;
			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 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 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 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 268 ms 10472 KB Output is correct
2 Correct 1158 ms 37492 KB Output is correct
3 Execution timed out 1530 ms 53808 KB Time limit exceeded
# Verdict Execution time Memory Grader output
1 Correct 375 ms 13432 KB Output is correct
2 Correct 1014 ms 32832 KB Output is correct
3 Execution timed out 1575 ms 54032 KB Time limit exceeded
# Verdict Execution time Memory Grader output
1 Correct 296 ms 11000 KB Output is correct
2 Correct 657 ms 25324 KB Output is correct
3 Execution timed out 1551 ms 57628 KB Time limit exceeded
# Verdict Execution time Memory Grader output
1 Correct 381 ms 13952 KB Output is correct
2 Correct 922 ms 30344 KB Output is correct
3 Execution timed out 1566 ms 55352 KB Time limit exceeded
# Verdict Execution time Memory Grader output
1 Correct 249 ms 9536 KB Output is correct
2 Correct 897 ms 29956 KB Output is correct
3 Correct 1413 ms 51572 KB Output is correct
# Verdict Execution time Memory Grader output
1 Correct 243 ms 10128 KB Output is correct
2 Correct 1286 ms 41088 KB Output is correct
3 Execution timed out 1582 ms 52216 KB Time limit exceeded
# Verdict Execution time Memory Grader output
1 Correct 237 ms 8696 KB Output is correct
2 Correct 1282 ms 41240 KB Output is correct
3 Execution timed out 1577 ms 52916 KB Time limit exceeded
# Verdict Execution time Memory Grader output
1 Correct 229 ms 8996 KB Output is correct
2 Correct 922 ms 31096 KB Output is correct
3 Execution timed out 1563 ms 53924 KB Time limit exceeded
# Verdict Execution time Memory Grader output
1 Correct 354 ms 12628 KB Output is correct
2 Correct 1041 ms 35832 KB Output is correct
3 Execution timed out 1584 ms 53804 KB Time limit exceeded
# Verdict Execution time Memory Grader output
1 Execution timed out 1572 ms 8440 KB Time limit exceeded
2 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Execution timed out 1550 ms 8568 KB Time limit exceeded
2 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Execution timed out 1571 ms 8568 KB Time limit exceeded
2 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Execution timed out 1576 ms 8540 KB Time limit exceeded
2 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Execution timed out 1571 ms 8568 KB Time limit exceeded
2 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Execution timed out 1574 ms 8440 KB Time limit exceeded
2 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Execution timed out 1571 ms 8568 KB Time limit exceeded
2 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Execution timed out 1571 ms 8568 KB Time limit exceeded
2 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Execution timed out 1578 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 1561 ms 8568 KB Time limit exceeded
2 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Execution timed out 1562 ms 8568 KB Time limit exceeded
2 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Execution timed out 1558 ms 8572 KB Time limit exceeded
2 Halted 0 ms 0 KB -