Bobo has an undirected graph with vertices and edges. The vertices are numbered by , and the -th edge is between the -th and the -th vertex. Plus, the -th vertex is associated with a character .
Find the number of ways to choose four distinct vertices such that
输入
Note from SCNUOJ admin: we don't have the official test data sets, and all tests used here are randomly generated, so expect weak tests and/or even wrong input format. Contact one of the admins if you wish to improve the tests.
The input consists of several test cases terminated by end-of-file. For each test case,
The first line contains two integers and .
The second line contains characters .
For the following lines, the -th line contains two integers and .
输出
For each test case, output an integer which denotes the number of ways.
样例
标准输入 复制文本 |
5 4 bbobo 1 3 2 3 3 4 4 5 4 6 bobo 1 2 1 3 1 4 2 3 2 4 3 4 4 0 bobo |
标准输出 复制文本 |
2 4 0 |
提示
For the first test case, there are quadrangles , .
For the second test case, there are quadrangles , , , .
For the third test case, there are no valid quadrangles.
来源
第六届中国大学生程序设计竞赛总决赛