比赛 20101101 评测结果 WWWWWWWWWW
题目名称 漂亮字串 最终得分 0
用户昵称 Citron酱 运行时间 0.000 s
代码语言 C++ 内存使用 0.00 MiB
提交时间 2010-11-01 19:48:27
显示代码纯文本
#include <fstream>

#define I_F "bs.in"
#define O_F "bs.out"

using namespace std;

long max(long a, long b);
long min(long a, long b);
void Exchange(long &a, long &b);

int main()
{
	long co,cx,mo,mx;
	long ans;
	
	ifstream fin(I_F);
	ofstream fout(O_F);
	while (!fin.eof())
	{
		ans=0;
		fin>>co>>cx>>mo>>mx;
		if ((mo==0)||(mx==0))
			ans=max(min(co,mo),min(cx,mx));
		else
		{
			if (co>cx)
			{
				Exchange(co,cx);
				Exchange(mo,mx);
			}
			ans=co+min(min(cx/(co+1),mx)*(co+1),cx);
		}
		fout<<ans<<'\n';
	}
	fin.close();
	fout.close();
	return 0;
}

long max(long a, long b)
{
	if (a>b)
		return a;
	else
		return b;
}

long min(long a, long b)
{
	if (a<b)
		return a;
	else
		return b;
}

void Exchange(long &a, long &b)
{
	long t=a;
	a=b;
	b=t;
}