CF1817F.Entangled Substrings

普及/提高-

通过率:0%

AC君温馨提醒

该题目为【codeforces】题库的题目,您提交的代码将被提交至codeforces进行远程评测,并由ACGO抓取测评结果后进行展示。由于远程测评的测评机由其他平台提供,我们无法保证该服务的稳定性,若提交后无反应,请等待一段时间后再进行重试。

题目描述

Quantum entanglement is when two particles link together in a certain way no matter how far apart they are in space.

You are given a string ss . A pair of its non-empty substrings (a,b)(a, b) is called entangled if there is a (possibly empty) link string cc such that:

  • Every occurrence of aa in ss is immediately followed by cbcb ;
  • Every occurrence of bb in ss is immediately preceded by acac .

In other words, aa and bb occur in ss only as substrings of acbacb . Compute the total number of entangled pairs of substrings of ss .

A string aa is a substring of a string bb if aa can be obtained from bb by the deletion of several (possibly zero or all) characters from the beginning and several (possibly zero or all) characters from the end.

输入格式

The first and only line contains a string ss of lowercase English letters ( 1s1051 \leq |s| \leq 10^5 ) — the string for which you should count pairs of entangled substrings.

输出格式

Output a single integer, the number of entangled pairs of substrings of ss .

输入输出样例

  • 输入#1

    abba

    输出#1

    1
  • 输入#2

    abacaba

    输出#2

    0
  • 输入#3

    abcabcabcabc

    输出#3

    5
  • 输入#4

    adamant

    输出#4

    82

说明/提示

In the first example, the only entangled pair is (ab,ba). For this pair, the corresponding link string cc is empty, as they only occur as substrings of the whole string abba, which doesn't have any characters between ab and ba.

In the second example, there are no entangled pairs.

In the third example, the entangled pairs are (a,b), (b,c), (a,c), (a,bc), and (ab,c). For most pairs, the corresponding link string cc is empty, except for the pair (a,c), for which the link string cc is b, as a and c only occur as substrings of the string abc.

首页