A13352 | Perform the Combo
时间限制1s
内存限制256MB
通过 / 提交0/0
题目描述
You want to perform the combo on your opponent in one popular fighting game. The combo is the string $s$ consisting of $n$ lowercase Latin letters. To perform the combo, you have to press all buttons in the order they appear in $s$ . I.e. if $s=$ "abca" then you have to press 'a', then 'b', 'c' and 'a' again.
You know that you will spend $m$ wrong tries to perform the combo and during the $i$ -th try you will make a mistake right after $p_i$ -th button ( $1 \le p_i < n$ ) (i.e. you will press first $p_i$ buttons right and start performing the combo from the beginning). It is guaranteed that during the $m+1$ -th try you press all buttons right and finally perform the combo.
I.e. if $s=$ "abca", $m=2$ and $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 $t$ independent test cases.
You know that you will spend $m$ wrong tries to perform the combo and during the $i$ -th try you will make a mistake right after $p_i$ -th button ( $1 \le p_i < n$ ) (i.e. you will press first $p_i$ buttons right and start performing the combo from the beginning). It is guaranteed that during the $m+1$ -th try you press all buttons right and finally perform the combo.
I.e. if $s=$ "abca", $m=2$ and $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 $t$ independent test cases.
输入格式
The first line of the input contains one integer $t$ ( $1 \le t \le 10^4$ ) — the number of test cases.
Then $t$ test cases follow.
The first line of each test case contains two integers $n$ and $m$ ( $2 \le n \le 2 \cdot 10^5$ , $1 \le m \le 2 \cdot 10^5$ ) — the length of $s$ and the number of tries correspondingly.
The second line of each test case contains the string $s$ consisting of $n$ lowercase Latin letters.
The third line of each test case contains $m$ integers $p_1, p_2, \dots, p_m$ ( $1 \le p_i < n$ ) — the number of characters pressed right during the $i$ -th try.
It is guaranteed that the sum of $n$ and the sum of $m$ both does not exceed $2 \cdot 10^5$ ( $\sum n \le 2 \cdot 10^5$ , $\sum m \le 2 \cdot 10^5$ ).
It is guaranteed that the answer for each letter does not exceed $2 \cdot 10^9$ .
Then $t$ test cases follow.
The first line of each test case contains two integers $n$ and $m$ ( $2 \le n \le 2 \cdot 10^5$ , $1 \le m \le 2 \cdot 10^5$ ) — the length of $s$ and the number of tries correspondingly.
The second line of each test case contains the string $s$ consisting of $n$ lowercase Latin letters.
The third line of each test case contains $m$ integers $p_1, p_2, \dots, p_m$ ( $1 \le p_i < n$ ) — the number of characters pressed right during the $i$ -th try.
It is guaranteed that the sum of $n$ and the sum of $m$ both does not exceed $2 \cdot 10^5$ ( $\sum n \le 2 \cdot 10^5$ , $\sum m \le 2 \cdot 10^5$ ).
It is guaranteed that the answer for each letter does not exceed $2 \cdot 10^9$ .
输出格式
For each test case, print the answer — $26$ 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 $4$ , 'b' is $2$ and 'c' is $2$ .
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 $9$ , 'd' is $4$ , 'e' is $5$ , 'f' is $3$ , 'o' is $9$ , 'r' is $3$ and 's' is $1$ .
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 $9$ , 'd' is $4$ , 'e' is $5$ , 'f' is $3$ , 'o' is $9$ , 'r' is $3$ and 's' is $1$ .
C++ 编辑器
输入
输出
可保存默认模板;新题优先使用已保存模板。
当前快捷键仅展示,暂不支持修改。
- 撤销
Ctrl / ⌘ + Z - 重做
Ctrl / ⌘ + Y - 查找
Ctrl / ⌘ + F - 全选
Ctrl / ⌘ + A - 复制
Ctrl / ⌘ + C - 剪切
Ctrl / ⌘ + X - 粘贴
Ctrl / ⌘ + V - 自动排版
工具栏排版按钮 - 草稿保存
编辑时自动保存到本机
历史
提交记录
状态说明时间源码
AI
作答助手
你好,我是作答助手。可以问思路、复杂度、样例含义或代码报错原因;不会直接给出完整 AC 代码。
确定要清空代码吗?
提交通过
评测结果:Accepted