303209: CF625A. Guest From the Past

Memory Limit:256 MB Time Limit:1 S
Judge Style:Text Compare Creator:
Submit:0 Solved:0

Description

Guest From the Past

题意翻译

你有$n$块钱,有两种买饮料的方法,第一种花费$a$元,第二种花费$b$元但返还$c$元。求你最多能买几瓶饮料。

题目描述

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.

输入输出格式

输入格式


First line of the input contains a single integer $ n $ ( $ 1<=n<=10^{18} $ ) — the number of rubles Kolya has at the beginning. Then follow three lines containing integers $ a $ , $ b $ and $ c $ ( $ 1<=a<=10^{18} $ , $ 1<=c&lt;b<=10^{18} $ ) — 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.

输出格式


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

输入输出样例

输入样例 #1

10
11
9
8

输出样例 #1

2

输入样例 #2

10
5
6
1

输出样例 #2

2

说明

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.

Input

题意翻译

你有$n$块钱,有两种买饮料的方法,第一种花费$a$元,第二种花费$b$元但返还$c$元。求你最多能买几瓶饮料。

加入题单

算法标签: