zoukankan      html  css  js  c++  java
  • 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 }
  • 相关阅读:
    Codeforces Round #380(div 2)
    Codeforces Round #378(div 2)
    Codeforces Round #379(div 2)
    CCPC2016合肥现场赛
    CCPC2016沈阳站
    HDU2222 Keywords Search__AC自动机
    poj2185Milking Grid
    POJ2961_kmp
    POJ 2406
    poj 2752Seek the Name, Seek the Fame
  • 原文地址:https://www.cnblogs.com/jxust-jiege666/p/6882274.html
Copyright © 2011-2022 走看看