CF1552A.Subsequence Permutation

普及/提高-

通过率:0%

AC君温馨提醒

该题目为【codeforces】题库的题目,您提交的代码将被提交至codeforces进行远程评测,并由ACGO抓取测评结果后进行展示。由于远程测评的测评机由其他平台提供,我们无法保证该服务的稳定性,若提交后无反应,请等待一段时间后再进行重试。

题目描述

A string ss of length nn , consisting of lowercase letters of the English alphabet, is given.

You must choose some number kk between 00 and nn . Then, you select kk characters of ss and permute them however you want. In this process, the positions of the other nkn-k characters remain unchanged. You have to perform this operation exactly once.

For example, if s="andrea"s=\texttt{"andrea"} , you can choose the k=4k=4 characters \texttt{"a_d_ea"} and permute them into \texttt{"d_e_aa"} so that after the operation the string becomes "dneraa"\texttt{"dneraa"} .

Determine the minimum kk so that it is possible to sort ss alphabetically (that is, after the operation its characters appear in alphabetical order).

输入格式

The first line contains a single integer tt ( 1t10001 \le t \le 1000 ) — the number of test cases. Then tt test cases follow.

The first line of each test case contains one integer nn ( 1n401 \le n \le 40 ) — the length of the string.

The second line of each test case contains the string ss . It is guaranteed that ss contains only lowercase letters of the English alphabet.

输出格式

For each test case, output the minimum kk that allows you to obtain a string sorted alphabetically, through the operation described above.

输入输出样例

  • 输入#1

    4
    3
    lol
    10
    codeforces
    5
    aaaaa
    4
    dcba

    输出#1

    2
    6
    0
    4

说明/提示

In the first test case, we can choose the k=2k=2 characters \texttt{"_ol"} and rearrange them as \texttt{"_lo"} (so the resulting string is "llo"\texttt{"llo"} ). It is not possible to sort the string choosing strictly less than 22 characters.

In the second test case, one possible way to sort ss is to consider the k=6k=6 characters \texttt{"_o__force_"} and rearrange them as \texttt{"_c__efoor_"} (so the resulting string is "ccdeefoors"\texttt{"ccdeefoors"} ). One can show that it is not possible to sort the string choosing strictly less than 66 characters.

In the third test case, string ss is already sorted (so we can choose k=0k=0 characters).

In the fourth test case, we can choose all k=4k=4 characters "dcba"\texttt{"dcba"} and reverse the whole string (so the resulting string is "abcd"\texttt{"abcd"} ).

首页