Codeforces Round #342 (Div. 2) 625A Guest From the Past(贪心)

来源:互联网 发布:java自学源代码 编辑:程序博客网 时间:2024/06/06 09:28

A. Guest From the Past
time limit per test
1 second
memory limit per test
256 megabytes
input
standard input
output
standard output

Kolya Gerasimov loves kefir very much. He lives in year 1984 and knows all the details of buying this delicious drink. One day, as you probably know, he found himself in year 2084, and buying kefir there is much more complicated.

Kolya is hungry, so he went to the nearest milk shop. In 2084 you may buy kefir in a plastic liter bottle, that costs a rubles, or in glass liter bottle, that costs b rubles. Also, you may return empty glass bottle and get c (c < b) rubles back, but you cannot return plastic bottles.

Kolya has n rubles and he is really hungry, so he wants to drink as much kefir as possible. There were no plastic bottles in his 1984, so Kolya doesn't know how to act optimally and asks for your help.

Input

First line of the input contains a single integer n (1 ≤ n ≤ 1018) — the number of rubles Kolya has at the beginning.

Then follow three lines containing integers ab and c (1 ≤ a ≤ 10181 ≤ c < b ≤ 1018) — the cost of one plastic liter bottle, the cost of one glass liter bottle and the money one can get back by returning an empty glass bottle, respectively.

Output

Print the only integer — maximum number of liters of kefir, that Kolya can drink.

Sample test(s)
input
101198
output
2
input
10561
output
2
Note

In the first sample, Kolya can buy one glass bottle, then return it and buy one more glass bottle. Thus he will drink 2 liters of kefir.

In the second sample, Kolya can buy two plastic bottle and get two liters of kefir, or he can buy one liter glass bottle, then return it and buy one plastic bottle. In both cases he will drink two liters of kefir.




题目链接:点击打开链接

塑料瓶牛奶a卢比, 玻璃瓶b卢比, 且玻璃空瓶可以换c元, 问最多可以喝多少牛奶.

玻璃瓶净价是b - c, 如果塑料瓶比净价还便宜, 则均买塑料瓶. 否则尽量买玻璃瓶, 剩下的买塑料瓶.

AC代码:

#include "iostream"#include "cstdio"#include "cstring"#include "algorithm"#include "queue"#include "stack"#include "cmath"#include "utility"#include "map"#include "set"#include "vector"#include "list"#include "string"#include "cstdlib"using namespace std;typedef long long ll;#define X first#define Y secondconst int MOD = 1e9 + 7;const int INF = 0x3f3f3f3f;ll n, a, b, c, ans;int main(int argc, char const *argv[]){cin >> n >> a >> b >> c;if(a < b - c) ans = n / a;else {if(n >= b) {ans = (n - b) / (b - c) + 1;n -= ans * (b - c);}ans += n / a;}cout << ans << endl;return 0;}


1 0