CF1738H.Palindrome Addicts

普及/提高-

通过率:0%

AC君温馨提醒

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

题目描述

Your task is to maintain a queue consisting of lowercase English letters as follows:

  • "push cc ": insert a letter cc at the back of the queue;
  • "pop": delete a letter from the front of the queue.

Initially, the queue is empty.

After each operation, you are asked to count the number of distinct palindromic substrings in the string that are obtained by concatenating the letters from the front to the back of the queue.

Especially, the number of distinct palindromic substrings of the empty string is 00 .

A string s[1..n]s[1..n] of length nn is palindromic if s[i]=s[ni+1]s[i] = s[n-i+1] for every 1in1 \leq i \leq n .

The string s[l..r]s[l..r] is a substring of string s[1..n]s[1..n] for every 1lrn1 \leq l \leq r \leq n .

Two strings s[1..n]s[1..n] and t[1..m]t[1..m] are distinct, if at least one of the following holds.

  • nmn \neq m ;
  • s[i]t[i]s[i] \neq t[i] for some 1imin{n,m}1 \leq i \leq \min\{n,m\} .

输入格式

The first line is an integer qq ( 1q1061 \leq q \leq 10^6 ), indicating the number of operations.

Then qq lines follow. Each of the following lines contains one of the operations as follows.

  • "push cc ": insert a letter cc at the back of the queue, where cc is a lowercase English letter;
  • "pop": delete a letter from the front of the queue.

It is guaranteed that no "pop" operation will be performed when the queue is empty.

输出格式

After each operation, print the number of distinct palindromic substrings in the string presented in the queue.

输入输出样例

  • 输入#1

    12
    push a
    pop
    push a
    push a
    push b
    push b
    push a
    push a
    pop
    pop
    pop
    push b

    输出#1

    1
    0
    1
    2
    3
    4
    5
    6
    5
    4
    3
    4

说明/提示

Let sks_k be the string presented in the queue after the kk -th operation, and let ckc_k be the number of distinct palindromic substrings of sks_k . The following table shows the details of the example.

kk sks_k ckc_k 11 aa 11 22 empty\textsf{empty} 00 33 aa 11 44 aaaa 22 55 aabaab 33 66 aabbaabb 44 77 aabbaaabba 55 88 aabbaaaabbaa 66 99 abbaaabbaa 55 1010 bbaabbaa 44 1111 baabaa 33 1212 baabbaab 44 It is worth pointing out that

  • After the 22 -nd operation, the string is empty and thus has no substrings. So the answer is 00 ;
  • After the 88 -th operation, the string is " aabbaaaabbaa ". The 66 distinct palindromic substrings are " aa ", " aaaa ", " aabbaaaabbaa ", " abbaabba ", " bb ", and " bbbb ".
首页