1476. Autobiography

Bobo has an undirected graph with nn vertices and mm edges. The vertices are numbered by 1,,n1, \dots, n, and the ii-th edge is between the aia_i-th and the bib_i-th vertex. Plus, the ii-th vertex is associated with a character cic_i.

Find the number of ways to choose four distinct vertices (u,v,w,x)(u, v, w, x) such that

  • uu and vv, vv and ww, ww and xx are connected by an edge,
  • cu=bc_u = \mathtt{b}, cv=oc_v = \mathtt{o}, cw=bc_w = \mathtt{b}, cx=oc_x = \mathtt{o}.

输入

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 nn and mm.

The second line contains nn characters c1cnc_1 \dots c_n.

For the following mm lines, the ii-th line contains two integers aia_i and bib_i.

  • 4n2×1054 \le n \le 2 \times 10^5
  • 0m2×1050 \le m \le 2 \times 10^5
  • cib,oc_i \in {\mathtt{b}, \mathtt{o}} for each 1in1 \leq i \leq n
  • 1ai,bin1 \leq a_i, b_i \leq n for each 1im1 \leq i \leq m
  • aibia_i \neq b_i for each 1im1 \leq i \leq m
  • ai,biaj,bj{a_i, b_i} \neq {a_j, b_j} for each 1i<jm1 \leq i < j \leq m
  • In each input, the sum of nn does not exceed 2×1052 \times 10^5. The sum of mm does not exceed 2×1052 \times 10^5.

输出

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 22 quadrangles (1,3,4,5)(1, 3, 4, 5), (2,3,4,5)(2, 3, 4, 5).

For the second test case, there are 44 quadrangles (1,2,3,4)(1, 2, 3, 4), (1,4,3,2)(1, 4, 3, 2), (3,2,1,4)(3, 2, 1, 4), (3,4,1,2)(3, 4, 1, 2).

For the third test case, there are no valid quadrangles.

来源

第六届中国大学生程序设计竞赛总决赛

登录以提交代码。
单点时限 1 秒
内存限制 128 MB
提交 15
通过 10