A14509 | Countdown
时间限制1s
内存限制256MB
通过 / 提交0/0
题目描述
You are given a digital clock with $n$ digits. Each digit shows an integer from $0$ to $9$ , so the whole clock shows an integer from $0$ to $10^n-1$ . The clock will show leading zeroes if the number is smaller than $10^{n-1}$ .
You want the clock to show $0$ with as few operations as possible. In an operation, you can do one of the following:
- decrease the number on the clock by $1$ , or
- swap two digits (you can choose which digits to swap, and they don't have to be adjacent).
Your task is to determine the minimum number of operations needed to make the clock show $0$ .
You want the clock to show $0$ with as few operations as possible. In an operation, you can do one of the following:
- decrease the number on the clock by $1$ , or
- swap two digits (you can choose which digits to swap, and they don't have to be adjacent).
Your task is to determine the minimum number of operations needed to make the clock show $0$ .
输入格式
Each test contains multiple test cases. The first line contains the number of test cases $t$ ( $1 \le t \le 10^3$ ).
The first line of each test case contains a single integer $n$ ( $1 \le n \le 100$ ) — number of digits on the clock.
The second line of each test case contains a string of $n$ digits $s_1, s_2, \ldots, s_n$ ( $0 \le s_1, s_2, \ldots, s_n \le 9$ ) — the number on the clock.
Note: If the number is smaller than $10^{n-1}$ the clock will show leading zeroes.
The first line of each test case contains a single integer $n$ ( $1 \le n \le 100$ ) — number of digits on the clock.
The second line of each test case contains a string of $n$ digits $s_1, s_2, \ldots, s_n$ ( $0 \le s_1, s_2, \ldots, s_n \le 9$ ) — the number on the clock.
Note: If the number is smaller than $10^{n-1}$ the clock will show leading zeroes.
输出格式
For each test case, print one integer: the minimum number of operations needed to make the clock show $0$ .
输入输出样例
输入 #1
7 3 007 4 1000 5 00000 3 103 4 2020 9 123456789 30 001678294039710047203946100020
输出 #1
7 2 0 5 6 53 115
In the first example, it's optimal to just decrease the number $7$ times.
In the second example, we can first swap the first and last position and then decrease the number by $1$ .
In the third example, the clock already shows $0$ , so we don't have to perform any operations.
In the second example, we can first swap the first and last position and then decrease the number by $1$ .
In the third example, the clock already shows $0$ , so we don't have to perform any operations.
C++ 编辑器
输入
输出
可保存默认模板;新题优先使用已保存模板。
当前快捷键仅展示,暂不支持修改。
- 撤销
Ctrl / ⌘ + Z - 重做
Ctrl / ⌘ + Y - 查找
Ctrl / ⌘ + F - 全选
Ctrl / ⌘ + A - 复制
Ctrl / ⌘ + C - 剪切
Ctrl / ⌘ + X - 粘贴
Ctrl / ⌘ + V - 自动排版
工具栏排版按钮 - 草稿保存
编辑时自动保存到本机
历史
提交记录
状态说明时间源码
AI
作答助手
你好,我是作答助手。可以问思路、复杂度、样例含义或代码报错原因;不会直接给出完整 AC 代码。
确定要清空代码吗?
提交通过
评测结果:Accepted