CF1573A.Countdown
普及/提高-
通过率:0%
AC君温馨提醒
该题目为【codeforces】题库的题目,您提交的代码将被提交至codeforces进行远程评测,并由ACGO抓取测评结果后进行展示。由于远程测评的测评机由其他平台提供,我们无法保证该服务的稳定性,若提交后无反应,请等待一段时间后再进行重试。
题目描述
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 10n−1 . The clock will show leading zeroes if the number is smaller than 10n−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 .
输入格式
Each test contains multiple test cases. The first line contains the number of test cases t ( 1≤t≤103 ).
The first line of each test case contains a single integer n ( 1≤n≤100 ) — number of digits on the clock.
The second line of each test case contains a string of n digits s1,s2,…,sn ( 0≤s1,s2,…,sn≤9 ) — the number on the clock.
Note: If the number is smaller than 10n−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.