A. Changing Volume-----贪心+一点点思维

第二天叫醒我的不是闹钟,是梦想!

Bob watches TV every day. He always sets the volume of his TV to b. However, today he is angry to find out someone has changed the volume to a. Of course, Bob has a remote control that can change the volume.

There are six buttons (−5,−2,−1,+1,+2,+5) on the control, which in one press can either increase or decrease the current volume by 1, 2, or 5. The volume can be arbitrarily large, but can never be negative. In other words, Bob cannot press the button if it causes the volume to be lower than 0.

As Bob is so angry, he wants to change the volume to b using as few button presses as possible. However, he forgets how to do such simple calculations, so he asks you for help. Write a program that given a and b, finds the minimum number of presses to change the TV volume from a to b.

Input
Each test contains multiple test cases. The first line contains the number of test cases T (1≤T≤1000). Then the descriptions of the test cases follow.

Each test case consists of one line containing two integers a and b (0≤a,b≤109) — the current volume and Bob’s desired volume, respectively.

Output
For each test case, output a single integer — the minimum number of presses to change the TV volume from a to b. If Bob does not need to change the volume (i.e. a=b), then print 0.

Example
inputCopy
3
4 0
5 14
3 9
outputCopy
2
3
2
Note
In the first example, Bob can press the −2 button twice to reach 0. Note that Bob can not press −5 when the volume is 4 since it will make the volume negative.

In the second example, one of the optimal ways for Bob is to press the +5 twice, then press −1 once.

In the last example, Bob can press the +5 once, then press +1.

//贪心每次都减去最大的

#include<bits/stdc++.h>
using namespace std;
typedef long long ll;
ll a,b;
int t;
int main()
{
  cin>>t;
  while(t--)
  {
    cin>>a>>b;
    ll res=0;
    if(a<b) swap(a,b);
    res+=(a-b)/5;
    a-=(a-b)/5*5;
    if(a<b) swap(a,b);
    res+=(a-b)/2;
    a-=(a-b)/2*2;
    if(a<b) swap(a,b);
    res+=(a-b);
    a-=(a-b);
    cout<<res<<endl;
  }
}

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值