比赛 |
20140321 |
评测结果 |
WWWAAWWWWW |
题目名称 |
行动开始 |
最终得分 |
20 |
用户昵称 |
TanAp0k |
运行时间 |
0.455 s |
代码语言 |
C++ |
内存使用 |
0.31 MiB |
提交时间 |
2014-03-21 20:56:58 |
显示代码纯文本
#include <fstream>
using namespace std;
int main()
{
int n, minoff, nextA, nextB, i, flag = 0, maxvalue = 0, linshi;
ifstream fin("goz.in");
ofstream fout("goz.out");
fin >> n;
fin >> nextA;
fin >> nextB;
if(nextA >= nextB)
{
flag = 1;
maxvalue += nextA;
}
else
{
maxvalue += nextB;
}
minoff = nextA-nextB;
for(i = 1; i < n; i++)
{
fin >> nextA;
fin >> nextB;
if(nextA >= nextB)
{
flag = 1;
maxvalue += nextA;
}
else
{
maxvalue += nextB;
linshi = nextA-nextB;
}
if(linshi > minoff)
{
minoff = linshi;
}
}
if(flag = 0)
{
fout << maxvalue+minoff;
}
else
{
fout << maxvalue;
}
fin.close();
fout.close();
return 0;
}