2055.Hongcow Masters the Cyclic Shift

Time Limit: 1s Memory Limit: 256MB

Hongcow's teacher heard that Hongcow had learned about the cyclic shift, and decided to set the following problem for him.You are given a list of n strings s1,s2,...,sn contained in the list A.A list X of strings is called stable if the following condition holds.First, a message is defined as a concatenation of some elements of the list X. You can use an arbitrary element as many times as you want, and you may concatenate these elements in any arbitrary order. Let SX denote the set of of all messages you can construct from the list. Of course, this set has infinite size if your list is nonempty.Call a single message good if the following conditions hold: Suppose the message is the concatenation of k strings w1,w2,...,wk, where each wi is an element of X. Consider the |w1|+|w2|+...+|wk| cyclic shifts of the string. Let m be the number of these cyclic shifts of the string that are elements of SX. A message is good if and only if m is exactly equal to k. The list X is called stable if and only if every element of SX is good.Let f(L) be 1 if L is a stable list, and 0 otherwise.Find the sum of f(L) where L is a nonempty contiguous sublist of A (there are 2055_1.png contiguous sublists in total).

Input Format(From the terminal/stdin)

Input The first line of input will contain a single integer n (1 \le n \le 30), denoting the number of strings in the list.The next n lines will each contain a string si (2055_2.png).

Output Format(To the terminal/stdout)

Output Print a single integer, the number of nonempty contiguous sublists that are stable.

Sample Input 1

Copy
4
a
ab
b
bba
 \n
 \n
  \n
 \n
   \n

Sample Output 1

Copy
7
 \n

Sample Input 2

Copy
5
hh
ee
ll
ll
oo
 \n
  \n
  \n
  \n
  \n
  \n

Sample Output 2

Copy
0
 \n

Sample Input 3

Copy
6
aab
ab
bba
b
ab
c
 \n
   \n
  \n
   \n
 \n
  \n
 \n

Sample Output 3

Copy
13
  \n

Hints

For the first sample, there are 10 sublists to consider. Sublists ["a", "ab", "b"], ["ab", "b", "bba"], and ["a", "ab", "b", "bba"] are not stable. The other seven sublists are stable.For example, X = ["a", "ab", "b"] is not stable, since the message "ab" + "ab" = "abab" has four cyclic shifts ["abab", "baba", "abab", "baba"], which are all elements of SX.

Submit

请先 登录

© 2025 FAQs