CF1311C.Perform the Combo

普及/提高-

通过率:0%

AC君温馨提醒

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

题目描述

You want to perform the combo on your opponent in one popular fighting game. The combo is the string ss consisting of nn lowercase Latin letters. To perform the combo, you have to press all buttons in the order they appear in ss . I.e. if s=s= "abca" then you have to press 'a', then 'b', 'c' and 'a' again.

You know that you will spend mm wrong tries to perform the combo and during the ii -th try you will make a mistake right after pip_i -th button ( 1pi<n1 \le p_i < n ) (i.e. you will press first pip_i buttons right and start performing the combo from the beginning). It is guaranteed that during the m+1m+1 -th try you press all buttons right and finally perform the combo.

I.e. if s=s= "abca", m=2m=2 and p=[1,3]p = [1, 3] then the sequence of pressed buttons will be 'a' (here you're making a mistake and start performing the combo from the beginning), 'a', 'b', 'c', (here you're making a mistake and start performing the combo from the beginning), 'a' (note that at this point you will not perform the combo because of the mistake), 'b', 'c', 'a'.

Your task is to calculate for each button (letter) the number of times you'll press it.

You have to answer tt independent test cases.

输入格式

The first line of the input contains one integer tt ( 1t1041 \le t \le 10^4 ) — the number of test cases.

Then tt test cases follow.

The first line of each test case contains two integers nn and mm ( 2n21052 \le n \le 2 \cdot 10^5 , 1m21051 \le m \le 2 \cdot 10^5 ) — the length of ss and the number of tries correspondingly.

The second line of each test case contains the string ss consisting of nn lowercase Latin letters.

The third line of each test case contains mm integers p1,p2,,pmp_1, p_2, \dots, p_m ( 1pi<n1 \le p_i < n ) — the number of characters pressed right during the ii -th try.

It is guaranteed that the sum of nn and the sum of mm both does not exceed 21052 \cdot 10^5 ( n2105\sum n \le 2 \cdot 10^5 , m2105\sum m \le 2 \cdot 10^5 ).

It is guaranteed that the answer for each letter does not exceed 21092 \cdot 10^9 .

输出格式

For each test case, print the answer — 2626 integers: the number of times you press the button 'a', the number of times you press the button 'b', \dots , the number of times you press the button 'z'.

输入输出样例

  • 输入#1

    3
    4 2
    abca
    1 3
    10 5
    codeforces
    2 8 3 2 9
    26 10
    qwertyuioplkjhgfdsazxcvbnm
    20 10 1 2 3 5 10 5 9 4

    输出#1

    4 2 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 
    0 0 9 4 5 3 0 0 0 0 0 0 0 0 9 0 0 3 1 0 0 0 0 0 0 0 
    2 1 1 2 9 2 2 2 5 2 2 2 1 1 5 4 11 8 2 7 5 1 10 1 5 2

说明/提示

The first test case is described in the problem statement. Wrong tries are "a", "abc" and the final try is "abca". The number of times you press 'a' is 44 , 'b' is 22 and 'c' is 22 .

In the second test case, there are five wrong tries: "co", "codeforc", "cod", "co", "codeforce" and the final try is "codeforces". The number of times you press 'c' is 99 , 'd' is 44 , 'e' is 55 , 'f' is 33 , 'o' is 99 , 'r' is 33 and 's' is 11 .

首页