比赛 |
20151019 |
评测结果 |
AAAWAWAWAA |
题目名称 |
爬山 |
最终得分 |
70 |
用户昵称 |
NVIDIA |
运行时间 |
0.013 s |
代码语言 |
C++ |
内存使用 |
0.31 MiB |
提交时间 |
2015-10-19 21:25:02 |
显示代码纯文本
#include<cstdio>
#include<iostream>
#include<cstring>
#include<algorithm>
#include<cmath>
#include<cstdlib>
#include<cmath>
#include<queue>
#include<map>
#include<iomanip>
using namespace std;
long long int n,d,a,b;
int main()
{
freopen("mountain.in","r",stdin);
freopen("mountain.out","w",stdout);
cin>>n>>d>>a>>b;
n--;
if(a>b)
{
long long int V;
V=a;
a=b;
b=V;
}
long long G;
long long ans;
G=b-a;
n-=(G/d);
G%=d;
if(n==0)
{cout<<b<<endl;
return 0;
}
else
{
if(G==0)
{cout<<d*(n/2)+b<<endl;
return 0;
}
}
if(n%2==0) cout<<d*(n/2)+a<<endl;
else cout<<d*(n/2)+b<<endl;
return 0;
}