A14277 | Love Song
时间限制1s
内存限制256MB
通过 / 提交0/0
题目描述
Petya once wrote a sad love song and shared it to Vasya. The song is a string consisting of lowercase English letters. Vasya made up $q$ questions about this song. Each question is about a subsegment of the song starting from the $l$ -th letter to the $r$ -th letter. Vasya considers a substring made up from characters on this segment and repeats each letter in the subsegment $k$ times, where $k$ is the index of the corresponding letter in the alphabet. For example, if the question is about the substring "abbcb", then Vasya repeats letter 'a' once, each of the letters 'b' twice, letter 'c" three times, so that the resulting string is "abbbbcccbb", its length is $10$ . Vasya is interested about the length of the resulting string.
Help Petya find the length of each string obtained by Vasya.
Help Petya find the length of each string obtained by Vasya.
输入格式
The first line contains two integers $n$ and $q$ ( $1\leq n\leq 100\,000$ , $1\leq q \leq 100\,000$ ) — the length of the song and the number of questions.
The second line contains one string $s$ — the song, consisting of $n$ lowercase letters of English letters.
Vasya's questions are contained in the next $q$ lines. Each line contains two integers $l$ and $r$ ( $1 \leq l \leq r \leq n$ ) — the bounds of the question.
The second line contains one string $s$ — the song, consisting of $n$ lowercase letters of English letters.
Vasya's questions are contained in the next $q$ lines. Each line contains two integers $l$ and $r$ ( $1 \leq l \leq r \leq n$ ) — the bounds of the question.
输出格式
Print $q$ lines: for each question print the length of the string obtained by Vasya.
输入输出样例
输入 #1
7 3 abacaba 1 3 2 5 1 7
输出 #1
4 7 11
输入 #2
7 4 abbabaa 1 3 5 7 6 6 2 4
输出 #2
5 4 1 5
输入 #3
13 7 sonoshikumiwo 1 5 2 10 7 7 1 13 4 8 2 5 3 9
输出 #3
82 125 9 191 62 63 97
In the first example Vasya is interested in three questions. In the first question Vasya considers the substring "aba", that transforms to "abba", so the answer is equal to $4$ . In the second question Vasya considers "baca", that transforms to "bbaccca", so the answer is $7$ . In the third question Vasya considers the string "abacaba",that transforms to "abbacccabba" of length $11$ .
C++ 编辑器
输入
输出
可保存默认模板;新题优先使用已保存模板。
当前快捷键仅展示,暂不支持修改。
- 撤销
Ctrl / ⌘ + Z - 重做
Ctrl / ⌘ + Y - 查找
Ctrl / ⌘ + F - 全选
Ctrl / ⌘ + A - 复制
Ctrl / ⌘ + C - 剪切
Ctrl / ⌘ + X - 粘贴
Ctrl / ⌘ + V - 自动排版
工具栏排版按钮 - 草稿保存
编辑时自动保存到本机
历史
提交记录
状态说明时间源码
AI
作答助手
你好,我是作答助手。可以问思路、复杂度、样例含义或代码报错原因;不会直接给出完整 AC 代码。
确定要清空代码吗?
提交通过
评测结果:Accepted