现在的位置: 首页 > 综合 > 正文

Codeforces Round #294 (Div. 2)D. A and B and Interesting Substrings

2019年11月06日 ⁄ 综合 ⁄ 共 2299字 ⁄ 字号 评论关闭
time limit per test

2 seconds

memory limit per test

256 megabytes

input

standard input

output

standard output

A and B are preparing themselves for programming contests.

After several years of doing sports programming and solving many problems that require calculating all sorts of abstract objects, A and B also developed rather peculiar tastes.

A likes lowercase letters of the Latin alphabet. He has assigned to each letter a number that shows how much he likes that letter (he has assigned negative numbers to the letters he dislikes).

B likes substrings. He especially likes the ones that start and end with the same letter (their length must exceed one).

Also, A and B have a string s. Now they are trying to find out how many substrings t of
a string s are interesting to B (that is, t starts
and ends with the same letter and its length is larger than one), and also the sum of values of all letters (assigned by A), except for the first and the last one is equal to zero.

Naturally, A and B have quickly found the number of substrings t that are interesting to them. Can you do it?

Input

The first line contains 26 integers xa, xb, ..., xz ( - 105 ≤ xi ≤ 105)
— the value assigned to letters a, b, c, ..., z respectively.

The second line contains string s of length between 1 and 105 characters,
consisting of Lating lowercase letters— the string for which you need to calculate the answer.

Output

Print the answer to the problem.

Sample test(s)
input
1 1 -1 1 1 1 1 1 1 1 1 1 1 1 1 7 1 1 1 8 1 1 1 1 1 1
xabcab
output
2
input
1 1 -1 1 1 1 1 1 1 1 1 1 1 1 1 7 1 1 1 8 1 1 1 1 1 1
aaa
output
2
Note

In the first sample test strings satisfying the condition above are abca and bcab.

In the second sample test strings satisfying the condition above are two occurences of aa.

对于前缀和psum,字符c的权值val,如果满足

psum[i]+val[c]=psum[j],i<j(i,j为c出现的两个位置)

那么此时区间[i,j]满足去掉两端权值为0

朴素的做法是n^2,用哈希跑快点可达到nlogn

#include<map>
#include<string>
#include<cstring>
#include<cstdio>
#include<cstdlib>
#include<cmath>
#include<queue>
#include<vector>
#include<iostream>
#include<algorithm>
#include<bitset>
#include<climits>
#include<list>
#include<iomanip>
#include<stack>
#include<set>
using namespace std;
vector<int>pos[26];
int val[26];
long long psum[int(1e5)+10];
int main()
{
	for(int i=0;i<26;i++)
		cin>>val[i];
	string s;
	cin>>s;
	int len=s.length();
	for(int i=0;i<len;i++)
	{
		pos[s[i]-'a'].push_back(i);
		if(i)
			psum[i]=psum[i-1]+val[s[i]-'a'];
		else
			psum[i]=val[s[i]-'a'];
	}
	long long ans=0;
	for(int i=0;i<26;i++)
	{
		len=pos[i].size();
		map<long long,int>cnt;
		for(int j=0;j<len;j++)
			cnt[psum[pos[i][j]]]++;
		for(int j=0;j<len;j++)
		{
			cnt[psum[pos[i][j]]]--;
			ans+=cnt[psum[pos[i][j]]+val[i]];
		}
	}
	cout<<ans;
}

【上篇】
【下篇】

抱歉!评论已关闭.