CF163E.e-Government

普及/提高-

通过率:0%

AC君温馨提醒

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

题目描述

The best programmers of Embezzland compete to develop a part of the project called "e-Government" — the system of automated statistic collecting and press analysis.

We know that any of the kk citizens can become a member of the Embezzland government. The citizens' surnames are a1,a2,...,aka_{1},a_{2},...,a_{k} . All surnames are different. Initially all kk citizens from this list are members of the government. The system should support the following options:

  • Include citizen aia_{i} to the government.
  • Exclude citizen aia_{i} from the government.
  • Given a newspaper article text, calculate how politicized it is. To do this, for every active government member the system counts the number of times his surname occurs in the text as a substring. All occurrences are taken into consideration, including the intersecting ones. The degree of politicization of a text is defined as the sum of these values for all active government members.

Implement this system.

输入格式

The first line contains space-separated integers nn and kk ( 1<=n,k<=1051<=n,k<=10^{5} ) — the number of queries to the system and the number of potential government members.

Next kk lines contain the surnames a1,a2,...,aka_{1},a_{2},...,a_{k} , one per line. All surnames are pairwise different.

Next nn lines contain queries to the system, one per line. Each query consists of a character that determines an operation and the operation argument, written consecutively without a space.

Operation "include in the government" corresponds to the character "+", operation "exclude" corresponds to "-". An argument of those operations is an integer between 11 and kk — the index of the citizen involved in the operation. Any citizen can be included and excluded from the government an arbitrary number of times in any order. Including in the government a citizen who is already there or excluding the citizen who isn't there changes nothing.

The operation "calculate politicization" corresponds to character "?". Its argument is a text.

All strings — surnames and texts — are non-empty sequences of lowercase Latin letters. The total length of all surnames doesn't exceed 10610^{6} , the total length of all texts doesn't exceed 10610^{6} .

输出格式

For any "calculate politicization" operation print on a separate line the degree of the politicization of the given text. Print nothing for other operations.

输入输出样例

  • 输入#1

    7 3
    a
    aa
    ab
    ?aaab
    -2
    ?aaab
    -3
    ?aaab
    +2
    ?aabbaa
    

    输出#1

    6
    4
    3
    6
    
首页