Mike and strings 798B

B. Mike and strings
time limit per test
2 seconds
memory limit per test
256 megabytes
input
standard input
output
standard output

Mike has n strings s1, s2, ..., sn each consisting of lowercase English letters. In one move he can choose a string si, erase the first character and append it to the end of the string. For example, if he has the string "coolmike", in one move he can transform it into the string "oolmikec".

Now Mike asks himself: what is minimal number of moves that he needs to do in order to make all the strings equal?

Input

The first line contains integer n (1 ≤ n ≤ 50) — the number of strings.

This is followed by n lines which contain a string each. The i-th line corresponding to string si. Lengths of strings are equal. Lengths of each string is positive and don't exceed 50.

Output

Print the minimal number of moves Mike needs in order to make all the strings equal or print  - 1 if there is no solution.

Examples
Input
4
xzzwo
zwoxz
zzwox
xzzwo
Output
5
Input
2
molzv
lzvmo
Output
2
Input
3
kc
kc
kc
Output
0
Input
3
aa
aa
ab
Output
-1
Note

In the first sample testcase the optimal scenario is to perform operations in such a way as to transform all strings into "zwoxz".

题意: 你可以将任意字符串第一个字符移到字符串尾部,可以重复此过程,问最少多少步,使得所有字符串相等

 1 #include <iostream>
 2 #include <cstring>
 3 #include <string>
 4 using namespace std;
 5 
 6 int get_step(string a, string b){
 7     int len = a.length();
 8     int ans = 0;
 9     for(int i = 0; i < len; i++){
10         if(a == b)
11             return ans;
12         //string b(b, 1);
13         string t = "";
14         t += b[0];
15         b.erase(0,1);
16         b += t;
17         //cout << i << " " << b << endl;
18         ans++;
19     }
20     return -1;
21 }
22 
23 int main(){
24     int n;
25     cin >> n;
26     string str[55];
27     for(int i = 1; i <= n; i++){
28         cin >> str[i];
29     }
30     int num = 1234567;
31     for(int i = 1; i <= n; i++){
32         int cmp = num;
33         num = 0;
34         for(int j = 1; j <= n; j++){
35             if(get_step(str[i], str[j]) == -1){
36                 cout << -1 << endl;
37                 return 0;
38             }
39             num += get_step(str[i], str[j]);
40         }
41         num = min(num,cmp);
42     }
43     cout << num << endl;
44     return 0;
45 }

 

 

转载于:https://www.cnblogs.com/jxust-jiege666/p/6882274.html

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值