博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
Codeforces Round #342 (Div. 2) A. Guest From the Past(贪心)
阅读量:4358 次
发布时间:2019-06-07

本文共 2374 字,大约阅读时间需要 7 分钟。

Description

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 Input

10 11 9 8
10 5 6 1

Sample Output

2 2

思路

题意:

一种饮料有塑料和玻璃两种包装,购买塑料包装花费a元,购买玻璃包装花费b元,同时玻璃瓶子可以兑换c元(c < b ),塑料包装不能兑换,问n元最多购买多少瓶饮料

题解:

当b - c < a时,尽可能多的购买玻璃包装,否则尽可能多的购买塑料包装。

 

#include
using namespace std;typedef __int64 LL;int main(){ LL n,a,b,c,tmp; scanf("%I64d%I64d%I64d%I64d",&n,&a,&b,&c); LL cnt = 0; LL d = b - c; if (d < a && n >= b) { n -= b; tmp = n / d; cnt += tmp; n -= tmp*d; LL dif = n + b; while (dif >= b) { tmp = dif/b; cnt += tmp; dif -= tmp*b; dif += tmp*c; } cnt += dif/a; } else { tmp = n/a; cnt += tmp; n -= tmp*a; LL dif = n; while (dif >= b) { tmp = dif/b; cnt += tmp; dif -= tmp*b; dif += tmp*c; } } printf("%I64d\n",cnt); return 0;}

  

#include 
#include
using namespace std;typedef long long ll;ll judge(ll n, ll a, ll b, const ll c) { ll ans = 0; if (b - c < a && n >= b) { ans = (n - b) / (b - c) + 1; n -= (b - c) * ans; } ans += n / a; return ans; }int main() { ios::sync_with_stdio(false); cin.tie(NULL); ll n, a, b, c; cin >> n; cin >> a >> b >> c; ll ans = judge(n, a, b, c); cout << ans << endl; return 0;}

  

 

转载于:https://www.cnblogs.com/ZhaoxiCheung/p/6032220.html

你可能感兴趣的文章
珍藏的最全的windows操作系统快捷键
查看>>
【DBAplus】SQL优化:一篇文章说清楚Oracle Hint的正确使用姿势
查看>>
二叉树结点删除操作
查看>>
图论-单源最短路-SPFA算法
查看>>
转换文件的字符集
查看>>
prometheus + grafana安装部署(centos6.8)
查看>>
Redis和Memcached的区别【转】
查看>>
VMware: Deploy multiple VM’s from template with PowerCLI
查看>>
Cascaded pose regression
查看>>
model,map,MapAndVivew用于页面跳转时候使用的即跳转后才添加属性 这样再回调中无法使用 因为回调的前提是页面不调转;解决的方法是用responsewrite(普通的字符响应)...
查看>>
自动在数据库中创建表
查看>>
如何在一个进程中启动另外一个线程:ProcessStartInfo Constructor
查看>>
树状数组模板题 P1904
查看>>
Kerberos安装及使用
查看>>
android 布局中 layout_gravity、gravity、orientation、layout_weight
查看>>
highcharts
查看>>
【学员管理系统】0x02 学生信息管理功能
查看>>
什么是Entity Framework(ORM)
查看>>
软件质量理解
查看>>
jquery 在 table 中修改某行值
查看>>