A12837 | You Are Given a Decimal String...
时间限制1s
内存限制256MB
通过 / 提交0/0
题目描述
Suppose you have a special $x$ - $y$ -counter. This counter can store some value as a decimal number; at first, the counter has value $0$ .
The counter performs the following algorithm: it prints its lowest digit and, after that, adds either $x$ or $y$ to its value. So all sequences this counter generates are starting from $0$ . For example, a $4$ - $2$ -counter can act as follows:
1. it prints $0$ , and adds $4$ to its value, so the current value is $4$ , and the output is $0$ ;
2. it prints $4$ , and adds $4$ to its value, so the current value is $8$ , and the output is $04$ ;
3. it prints $8$ , and adds $4$ to its value, so the current value is $12$ , and the output is $048$ ;
4. it prints $2$ , and adds $2$ to its value, so the current value is $14$ , and the output is $0482$ ;
5. it prints $4$ , and adds $4$ to its value, so the current value is $18$ , and the output is $04824$ .
This is only one of the possible outputs; for example, the same counter could generate $0246802468024$ as the output, if we chose to add $2$ during each step.
You wrote down a printed sequence from one of such $x$ - $y$ -counters. But the sequence was corrupted and several elements from the sequence could be erased.
Now you'd like to recover data you've lost, but you don't even know the type of the counter you used. You have a decimal string $s$ — the remaining data of the sequence.
For all $0 \le x, y < 10$ , calculate the minimum number of digits you have to insert in the string $s$ to make it a possible output of the $x$ - $y$ -counter. Note that you can't change the order of digits in string $s$ or erase any of them; only insertions are allowed.
The counter performs the following algorithm: it prints its lowest digit and, after that, adds either $x$ or $y$ to its value. So all sequences this counter generates are starting from $0$ . For example, a $4$ - $2$ -counter can act as follows:
1. it prints $0$ , and adds $4$ to its value, so the current value is $4$ , and the output is $0$ ;
2. it prints $4$ , and adds $4$ to its value, so the current value is $8$ , and the output is $04$ ;
3. it prints $8$ , and adds $4$ to its value, so the current value is $12$ , and the output is $048$ ;
4. it prints $2$ , and adds $2$ to its value, so the current value is $14$ , and the output is $0482$ ;
5. it prints $4$ , and adds $4$ to its value, so the current value is $18$ , and the output is $04824$ .
This is only one of the possible outputs; for example, the same counter could generate $0246802468024$ as the output, if we chose to add $2$ during each step.
You wrote down a printed sequence from one of such $x$ - $y$ -counters. But the sequence was corrupted and several elements from the sequence could be erased.
Now you'd like to recover data you've lost, but you don't even know the type of the counter you used. You have a decimal string $s$ — the remaining data of the sequence.
For all $0 \le x, y < 10$ , calculate the minimum number of digits you have to insert in the string $s$ to make it a possible output of the $x$ - $y$ -counter. Note that you can't change the order of digits in string $s$ or erase any of them; only insertions are allowed.
输入格式
The first line contains a single string $s$ ( $1 \le |s| \le 2 \cdot 10^6$ , $s_i \in \{\text{0} - \text{9}\}$ ) — the remaining data you have. It's guaranteed that $s_1 = 0$ .
输出格式
Print a $10 \times 10$ matrix, where the $j$ -th integer ( $0$ -indexed) on the $i$ -th line ( $0$ -indexed too) is equal to the minimum number of digits you have to insert in the string $s$ to make it a possible output of the $i$ - $j$ -counter, or $-1$ if there is no way to do so.
输入输出样例
输入 #1
0840
输出 #1
-1 17 7 7 7 -1 2 17 2 7 17 17 7 5 5 5 2 7 2 7 7 7 7 4 3 7 1 7 2 5 7 5 4 7 3 3 2 5 2 3 7 5 3 3 7 7 1 7 2 7 -1 5 7 3 7 -1 2 9 2 7 2 2 1 2 1 2 2 2 0 1 17 7 7 5 7 9 2 17 2 3 2 2 2 2 2 2 0 2 2 2 7 7 5 3 7 7 1 3 2 7
Let's take, for example, $4$ - $3$ -counter. One of the possible outcomes the counter could print is $0(4)8(1)4(7)0$ (lost elements are in the brackets).
One of the possible outcomes a $2$ - $3$ -counter could print is $0(35)8(1)4(7)0$ .
The $6$ - $8$ -counter could print exactly the string $0840$ .
One of the possible outcomes a $2$ - $3$ -counter could print is $0(35)8(1)4(7)0$ .
The $6$ - $8$ -counter could print exactly the string $0840$ .
C++ 编辑器
输入
输出
可保存默认模板;新题优先使用已保存模板。
当前快捷键仅展示,暂不支持修改。
- 撤销
Ctrl / ⌘ + Z - 重做
Ctrl / ⌘ + Y - 查找
Ctrl / ⌘ + F - 全选
Ctrl / ⌘ + A - 复制
Ctrl / ⌘ + C - 剪切
Ctrl / ⌘ + X - 粘贴
Ctrl / ⌘ + V - 自动排版
工具栏排版按钮 - 草稿保存
编辑时自动保存到本机
历史
提交记录
状态说明时间源码
AI
作答助手
你好,我是作答助手。可以问思路、复杂度、样例含义或代码报错原因;不会直接给出完整 AC 代码。
确定要清空代码吗?
提交通过
评测结果:Accepted