CF1616E.Lexicographically Small Enough
普及/提高-
通过率:0%
AC君温馨提醒
该题目为【codeforces】题库的题目,您提交的代码将被提交至codeforces进行远程评测,并由ACGO抓取测评结果后进行展示。由于远程测评的测评机由其他平台提供,我们无法保证该服务的稳定性,若提交后无反应,请等待一段时间后再进行重试。
题目描述
You are given two strings s and t of equal length n . In one move, you can swap any two adjacent characters of the string s .
You need to find the minimal number of operations you need to make string s lexicographically smaller than string t .
A string a is lexicographically smaller than a string b if and only if one of the following holds:
- a is a prefix of b , but a=b ;
- in the first position where a and b differ, the string a has a letter that appears earlier in the alphabet than the corresponding letter in b .
输入格式
The first line of input contains one integer q ( 1≤q≤10000 ): the number of test cases.
The first line of each test case contains a single integer n ( 1≤n≤105 ).
The second line of each test case contains the string s consisting of n lowercase English letters.
The third line of each test case contains the string t consisting of n lowercase English letters.
It is guaranteed that the sum of n over all test cases does not exceed 2⋅105 .
输出格式
For each test case, print in a separate line the minimal number of operations you need to make string s lexicographically smaller than string t , or −1 , if it's impossible.
输入输出样例
输入#1
4 1 a a 3 rll rrr 3 caa aca 5 ababa aabba
输出#1
-1 0 2 2