CF1363F.Rotating Substrings

普及/提高-

通过率:0%

AC君温馨提醒

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

题目描述

You are given two strings ss and tt , each of length nn and consisting of lowercase Latin alphabets. You want to make ss equal to tt .

You can perform the following operation on ss any number of times to achieve it —

  • Choose any substring of ss and rotate it clockwise once, that is, if the selected substring is s[l,l+1...r]s[l,l+1...r] , then it becomes s[r,l,l+1...r1]s[r,l,l + 1 ... r - 1] . All the remaining characters of ss stay in their position. For example, on rotating the substring [2,4][2,4] , string "abcde" becomes "adbce".

A string aa is a substring of a string bb if aa can be obtained from bb by deletion of several (possibly, zero or all) characters from the beginning and several (possibly, zero or all) characters from the end.

Find the minimum number of operations required to convert ss to tt , or determine that it's impossible.

输入格式

The first line of the input contains a single integer tt (1t2000)(1\leq t \leq 2000) — the number of test cases. The description of the test cases follows.

The first line of each test case contains a single integer nn (1n2000)(1\leq n \leq 2000) — the length of the strings.

The second and the third lines contain strings ss and tt respectively.

The sum of nn over all the test cases does not exceed 20002000 .

输出格式

For each test case, output the minimum number of operations to convert ss to tt . If it is not possible to convert ss to tt , output 1-1 instead.

输入输出样例

  • 输入#1

    6
    1
    a
    a
    2
    ab
    ba
    3
    abc
    cab
    3
    abc
    cba
    4
    abab
    baba
    4
    abcc
    aabc

    输出#1

    0
    1
    1
    2
    1
    -1

说明/提示

For the 11 -st test case, since ss and tt are equal, you don't need to apply any operation.

For the 22 -nd test case, you only need to apply one operation on the entire string ab to convert it to ba.

For the 33 -rd test case, you only need to apply one operation on the entire string abc to convert it to cab.

For the 44 -th test case, you need to apply the operation twice: first on the entire string abc to convert it to cab and then on the substring of length 22 beginning at the second character to convert it to cba.

For the 55 -th test case, you only need to apply one operation on the entire string abab to convert it to baba.

For the 66 -th test case, it is not possible to convert string ss to tt .

首页