A. Cheap Travel1200 / 暴力
Posted 幽殇默
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了A. Cheap Travel1200 / 暴力相关的知识,希望对你有一定的参考价值。
https://codeforces.com/problemset/problem/466/A
#include<bits/stdc++.h>
using namespace std;
typedef long long int LL;
int main(void)
{
LL n,m,a,b; cin>>n>>m>>a>>b;
LL ans=1e9;
for(int i=0;i<=n;i++)
{
for(int j=0;j<=n;j++)
{
if(i+j*m>=n)
{
LL temp=a*i+j*b;
ans=min(ans,temp);
}
}
}
cout<<ans;
return 0;
}
以上是关于A. Cheap Travel1200 / 暴力的主要内容,如果未能解决你的问题,请参考以下文章
A. Level Statistics1200 / 思维 模拟
A. Level Statistics1200 / 思维 模拟
A. Level Statistics1200 / 思维 模拟