传统题 1000ms 256MiB

D - RGB Triplets

该比赛已结束,您无法在比赛模式下递交该题目。您可以点击“在题库中打开”以普通模式查看和递交本题。

D - RGB Triplets

Score : $400$ points

Problem Statement

We have a string $S$ of length $N$ consisting of R, G, and B.

Find the number of triples $(i,~j,~k)~(1 \leq i < j < k \leq N)$ that satisfy both of the following conditions:

  • $S_i \neq S_j$, $S_i \neq S_k$, and $S_j \neq S_k$.
  • $j - i \neq k - j$.

Constraints

  • $1 \leq N \leq 4000$
  • $S$ is a string of length $N$ consisting of R, G, and B.

Input

Input is given from Standard Input in the following format:

NN

SS

Output

Print the number of triplets in question.


4
RRGB
1

Only the triplet $(1,~3,~4)$ satisfies both conditions. The triplet $(2,~3,~4)$ satisfies the first condition but not the second, so it does not count.


39
RBRBGRBGGBBRRGBBRRRBGGBRBGBRBGBRBBBGBBB
1800

2024寒假入门组刷题营(八)

未参加
状态
已结束
规则
ACM/ICPC
题目
8
开始于
2024-2-5 13:30
结束于
2024-2-5 15:30
持续时间
2 小时
主持人
参赛人数
8