A15867 | Maximum Strength
时间限制1s
内存限制256MB
通过 / 提交0/0
题目描述
Fedya is playing a new game called "The Legend of Link", in which one of the character's abilities is to combine two materials into one weapon. Each material has its own strength, which can be represented by a positive integer $x$ . The strength of the resulting weapon is determined as the sum of the absolute differences of the digits in the decimal representation of the integers at each position.
Formally, let the first material have strength $X = \overline{x_{1}x_{2} \ldots x_{n}}$ , and the second material have strength $Y = \overline{y_{1}y_{2} \ldots y_{n}}$ . Then the strength of the weapon is calculated as $|x_{1} - y_{1}| + |x_{2} - y_{2}| + \ldots + |x_{n} - y_{n}|$ . If the integers have different lengths, then the shorter integer is padded with leading zeros.
Fedya has an unlimited supply of materials with all possible strengths from $L$ to $R$ , inclusive. Help him find the maximum possible strength of the weapon he can obtain.
An integer $C = \overline{c_{1}c_{2} \ldots c_{k}}$ is defined as an integer obtained by sequentially writing the digits $c_1, c_2, \ldots, c_k$ from left to right, i.e. $10^{k-1} \cdot c_1 + 10^{k-2} \cdot c_2 + \ldots + c_k$ .
Formally, let the first material have strength $X = \overline{x_{1}x_{2} \ldots x_{n}}$ , and the second material have strength $Y = \overline{y_{1}y_{2} \ldots y_{n}}$ . Then the strength of the weapon is calculated as $|x_{1} - y_{1}| + |x_{2} - y_{2}| + \ldots + |x_{n} - y_{n}|$ . If the integers have different lengths, then the shorter integer is padded with leading zeros.
Fedya has an unlimited supply of materials with all possible strengths from $L$ to $R$ , inclusive. Help him find the maximum possible strength of the weapon he can obtain.
An integer $C = \overline{c_{1}c_{2} \ldots c_{k}}$ is defined as an integer obtained by sequentially writing the digits $c_1, c_2, \ldots, c_k$ from left to right, i.e. $10^{k-1} \cdot c_1 + 10^{k-2} \cdot c_2 + \ldots + c_k$ .
输入格式
Each test contains multiple test cases. The first line contains the number of test cases $t$ ( $1 \le t \le 500$ ). The description of the test cases follows.
The first line of each test case contains two integers $L$ and $R$ ( $1 \le L \le R < 10^{100}$ ) — the decimal representation of the integers representing the minimum and maximum strength of the materials that Fedya has. It is guaranteed that the integers $L$ and $R$ do not contain leading zeros.
Note that the input data may not fit into standard $32$ -bit or $64$ -bit integer data types.
The first line of each test case contains two integers $L$ and $R$ ( $1 \le L \le R < 10^{100}$ ) — the decimal representation of the integers representing the minimum and maximum strength of the materials that Fedya has. It is guaranteed that the integers $L$ and $R$ do not contain leading zeros.
Note that the input data may not fit into standard $32$ -bit or $64$ -bit integer data types.
输出格式
For each test case print one integer — the maximum possible strength of the weapon that Fedya can obtain from the given materials.
输入输出样例
输入 #1
6 53 57 179 239 13 37 132228 132228 54943329752812629795 55157581939688863366 88 1914
输出 #1
4 19 11 0 163 28
In the first test case, the weapon made from materials with strengths $53$ and $57$ will have the maximum possible strength: $|5 - 5| + |3 - 7| = 4$ .
In the second test case, the maximum strength is achieved with materials with strengths $190$ and $209$ : $|1 - 2| + |9 - 0| + |0 - 9| = 19$ .
In the fourth test case, there is only one valid strength, so the answer is $0$ .
In the sixth test case, the maximum strength is achieved with materials with strengths $1909$ and $90$ : $|1 - 0| + |9 - 0| + |0 - 9| + |9 - 0| = 28$ . Note that the shorter integer was padded with leading zeros.
In the second test case, the maximum strength is achieved with materials with strengths $190$ and $209$ : $|1 - 2| + |9 - 0| + |0 - 9| = 19$ .
In the fourth test case, there is only one valid strength, so the answer is $0$ .
In the sixth test case, the maximum strength is achieved with materials with strengths $1909$ and $90$ : $|1 - 0| + |9 - 0| + |0 - 9| + |9 - 0| = 28$ . Note that the shorter integer was padded with leading zeros.
C++ 编辑器
输入
输出
可保存默认模板;新题优先使用已保存模板。
当前快捷键仅展示,暂不支持修改。
- 撤销
Ctrl / ⌘ + Z - 重做
Ctrl / ⌘ + Y - 查找
Ctrl / ⌘ + F - 全选
Ctrl / ⌘ + A - 复制
Ctrl / ⌘ + C - 剪切
Ctrl / ⌘ + X - 粘贴
Ctrl / ⌘ + V - 自动排版
工具栏排版按钮 - 草稿保存
编辑时自动保存到本机
历史
提交记录
状态说明时间源码
AI
作答助手
你好,我是作答助手。可以问思路、复杂度、样例含义或代码报错原因;不会直接给出完整 AC 代码。
确定要清空代码吗?
提交通过
评测结果:Accepted