我是靠谱客的博主 柔弱月饼,最近开发中收集的这篇文章主要介绍Codeforces Round #266 (Div. 2) A,觉得挺不错的,现在分享给大家,希望可以做个参考。

概述

题目:

A. Cheap Travel
time limit per test
1 second
memory limit per test
256 megabytes
input
standard input
output
standard output

Ann has recently started commuting by subway. We know that a one ride subway ticket costs a rubles. Besides, Ann found out that she can buy a special ticket for m rides (she can buy it several times). It costs b rubles. Ann did the math; she will need to use subway n times. Help Ann, tell her what is the minimum sum of money she will have to spend to make n rides?

Input

The single line contains four space-separated integers nmab (1 ≤ n, m, a, b ≤ 1000) — the number of rides Ann has planned, the number of rides covered by the m ride ticket, the price of a one ride ticket and the price of an m ride ticket.

Output

Print a single integer — the minimum sum in rubles that Ann will need to spend.

Sample test(s)
input
6 2 1 2
output
6
input
5 2 2 3
output
8
Note

In the first sample one of the optimal solutions is: each time buy a one ride ticket. There are other optimal solutions. For example, buy three m ride tickets.

题意分析:

很简单的贪心,但是边缘数据和取整注意细节。

代码:

#include <iostream>
#include <string>
#include <cstdio>
#include <cstring>
#include <queue>
#include <stack>
#include <map>
#include <set>
#include <cmath>
#include <sstream>
#include <algorithm>
#include <numeric>
using namespace std;
int main()
{
int n, m, a, b;
cin >> n >> m >> a >> b;
double f = (double)b/(double)m;
if (f < (double)a)
{
int k1 = n/m;
int k2 = n-k1*m;
int k3 = (k1+1)*b;
cout << min(k1*b+k2*a, k3);
}
else
{
cout << n*a << endl;
}
return 0;
}


最后

以上就是柔弱月饼为你收集整理的Codeforces Round #266 (Div. 2) A的全部内容,希望文章能够帮你解决Codeforces Round #266 (Div. 2) A所遇到的程序开发问题。

如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。

本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
点赞(81)

评论列表共有 0 条评论

立即
投稿
返回
顶部