cf965c Greedy Arkady

Posted poorpool

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了cf965c Greedy Arkady相关的知识,希望对你有一定的参考价值。

呸,大傻逼题,我更傻逼ref

#include <iostream>
using namespace std;
typedef long long ll;
ll n, k, m, d, ans;
int main(){
	cin>>n>>k>>m>>d;
	for(int i=1; i<=d; i++){
		ll x=n/(k*(i-1)+1);
		if(x==0)	break;
		x = min(x, m);
		ll tms=n/x;
		if(tms<(i-1)*k+1)	continue;
		ans = max(ans, i*x);
	}
	cout<<ans<<endl;
	return 0;
}

以上是关于cf965c Greedy Arkady的主要内容,如果未能解决你的问题,请参考以下文章

cf965C 二分+推方程

[CF983D]Arkady and Rectangles

CF827FDirty Arkady's Kitchen DP

CF-Taxi(greedy)

「 CodeForces」10E Greedy Change

CF3B Lorry