Lozinke

 1 Sec 131070 KB |  显示标签
5196
通过提交

题目描述

Recently, there has been a breach of user information from the mega-popular social network
Secret Network . Among the confidential information are the passwords of all users.
Mihael, a young student who has been exploring computer security lately, found the whole
thing really interesting. While experimenting with the social network, he found another
security breach! When you input any string of characters that contains a substring equal to
the actual password, the login will be successful. For example, if the user whose password is
abc inputs one of the strings abc , abcd or imaabcnema , the system will successfully log him
in, whereas the login will fail for axbc .
Mihael wants to know how many ordered pairs of different users exist such that the first user,
using their own password, can login as the second user.

输入格式

The first line of input contains the positive integer N (1 ≤ N ≤ 20 000), the number of users.
Each of the following N lines contains the user passwords. The passwords consist of at least
one and at most 10 lowercase letters of the English alphabet.

输出格式

The first and only line of output must contains the number of ordered pairs from the task.

样例输入 #1

3
aaa
aa
abb
3
x
x
xy
5
mir
mirta
ta
ir
t

样例输出 #1

1
4
6

提示

In test cases worth 40 points total, it will hold 1 ≤ N ≤ 2000.

来源

COCI 2017-2018 CONTEST #1
 上传者
coach
 创建时间
2018-03-10 21:46
 修改时间
2022-06-28 18:38