记录编号 48421 评测结果 AAAAAAAAAA
题目名称 漂亮字串 最终得分 100
用户昵称 Gravatar临轩听雨ゐ 是否通过 通过
代码语言 C++ 运行时间 0.039 s
提交时间 2012-11-05 18:54:49 内存使用 3.15 MiB
显示代码纯文本
#include <fstream>
#include <cstdlib>
#include <cstdio>
#include <cmath>
using namespace std;
int main()
{
	ifstream in("bs.in");
	ofstream out("bs.out");
	long long co,cx,mo,mx;
    while(in>>co>>cx>>mo>>mx)
    {
		long long ans=0;
        if(co==0||mo==0)
        {
            ans=min(cx,mx);
            out<<ans<<endl;
            continue;
        }
        if(cx==0||mx==0)
        {
            ans=min(co,mo);
            out<<ans<<endl;
            continue;
        }
        
        if(co==cx)
        {
            out<<2*co<<endl;
            continue;
        }
        if(co<cx)
        {
            ans=mx*(co+1);
            ans=min(ans,cx);
            out<<co+ans<<endl;
            continue;
        }
        if(co>cx)
        {
            ans=mo*(cx+1);
            ans=min(ans,co);
            out<<ans+cx<<endl;
            continue;
        }
    }
    return 0;
}