CF1616E.Lexicographically Small Enough

普及/提高-

通过率:0%

AC君温馨提醒

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

题目描述

You are given two strings ss and tt of equal length nn . In one move, you can swap any two adjacent characters of the string ss .

You need to find the minimal number of operations you need to make string ss lexicographically smaller than string tt .

A string aa is lexicographically smaller than a string bb if and only if one of the following holds:

  • aa is a prefix of bb , but aba \ne b ;
  • in the first position where aa and bb differ, the string aa has a letter that appears earlier in the alphabet than the corresponding letter in bb .

输入格式

The first line of input contains one integer qq ( 1q100001 \le q \le 10\,000 ): the number of test cases.

The first line of each test case contains a single integer nn ( 1n1051 \le n \le 10^5 ).

The second line of each test case contains the string ss consisting of nn lowercase English letters.

The third line of each test case contains the string tt consisting of nn lowercase English letters.

It is guaranteed that the sum of nn over all test cases does not exceed 21052 \cdot 10^5 .

输出格式

For each test case, print in a separate line the minimal number of operations you need to make string ss lexicographically smaller than string tt , or 1-1 , if it's impossible.

输入输出样例

  • 输入#1

    4
    1
    a
    a
    3
    rll
    rrr
    3
    caa
    aca
    5
    ababa
    aabba

    输出#1

    -1
    0
    2
    2
首页