比赛 20101101 评测结果 WWWWAWAWWW
题目名称 漂亮字串 最终得分 20
用户昵称 临轩听雨ゐ 运行时间 0.036 s
代码语言 C++ 内存使用 3.15 MiB
提交时间 2012-11-05 09:11:08
显示代码纯文本
#include <fstream>
#include <cstdlib>
#include <cstdio>
#include <cmath>
using namespace std;
int main()
{
	ifstream in("bs.in");
	ofstream out("bs.out");
	int co,cx,mo,mx;
    while(in>>co>>cx>>mo>>mx)
    {
        if(co==0||mo==0||cx==0||mx==0)
        {
            out<<0<<endl;
			continue;
        }
        if(co==cx)
		{
            out<<2*co<<endl;
			continue;
		}
        else
        {
			int ans=0;
			if(co<cx)
				ans=mx;
			if(co>cx)
				ans=mo;
			ans*=(min(co,cx)+1);
            ans=min(ans,max(cx,co));
            out<<min(co,cx)+ans<<endl;
        }
    }
    return 0;
}