A. Yet Another Two Integers Problem(方法种类多)

这是一个关于如何用最少的次数通过加减不超过10的整数将a转换为b的问题。每一步可以选择1到10之间的k进行加减。题目提供了若干示例测试用例,并说明了贪心策略,即尽可能使用较大的k值进行操作。简化后的代码考虑了主要使用10和其他较小的数字进行变换。
摘要由CSDN通过智能技术生成

A. Yet Another Two Integers Problem
time limit per test
1 second
memory limit per test
256 megabytes
input
standard input
output
standard output
You are given two integers a and b.
In one move, you can choose some integer k from 1 to 10 and add it to a or subtract it from a. In other words, you choose an integer k∈[1;10]k∈[1;10] and perform a:=a+k or a:=a−k. You may use different values of k in different moves.
Your task is to find the minimum number of moves required to obtain b from a.
You have to answer t independent test cases.
Input
The first line of the input contains one integer t (1≤t≤2⋅104,1≤t≤2⋅104) — the number of test cases. Then t test cases follow.
The only line of the test case contains two integers a and b (1≤a,b≤109,1≤a,b≤109).
Output
For each test case, print the answer: the minimum number of moves required to obtain b from a.
Example
input
Copy
6
5 5
13 42
18 4
1337 420
123456789 1000000000
100500 9000
output
Copy
0
3
2
92
87654322
9150
Note
In the first test case of the example, you don’t need to do anything.
In the second test case of the example, the following sequence of moves can be applied: 13→23→32→42 (add 10, add 9, add 10).
In the third test case of the example, the following sequence of moves can be applied: 18→10→4 (subtract 8, subtract 6).
题意:用多组k把a变成b,问需要最少的操作数,要求最少的操作数,由贪心可得:那么就是直接由最大的k值去求解即可。剩余部分即是其它的k值去进行单个补位而已。
比较复杂的代码:

#include<bits/stdc++.h>
using 
  • 1
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值