A and B and Interesting Substrings(学习利用map容器提高效率的技巧)

181 篇文章 0 订阅
173 篇文章 3 订阅


Link:http://codeforces.com/contest/519/problem/D

D. A and B and Interesting Substrings
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.



AC code:
#include <iostream>
#include <vector>
#include <map>
#include <cstdio>
#include <cstring>
#include <algorithm>
#define si(a) scanf("%d",&a)

using namespace std;

char str[100005];
int ara[26],len;
long long sum[100005];

int main()
{
    int i;
    for(i=0;i<26;i++)
        si(ara[i]);
    getchar();
    gets(str+1);
    len=strlen(str+1);
    sum[0]=0;
    for(i=1;i<=len;i++)
        sum[i]=sum[i-1]+ara[str[i]-'a'];
    long long total=0;
    for(i=0;i<26;i++){
        map<long long,int> data;
        for(int j=1;j<=len;j++)
            if(str[j]-'a'==i){
            total+=data[sum[j-1]];
            data[sum[j]]++;
            }
    }
    cout<<total<<endl;
    return 0;
}



TLE  code:


#include<iostream>
#include<algorithm>
#include<cstring>
#include<cmath>
#include<cstdio>
#define LL long long 
using namespace std;
int a[27];
__int64 ans,sum[100010];
char s[100010];
int len;
int main()
{
	int i,j;
	for(i=0;i<26;i++)
	{
		//cin>>a[i];
		scanf("%d",&a[i]);
	}
	scanf("%s",s);
	//cin>>s;
	len=strlen(s);
	sum[0]=a[s[0]-'a'];
	for(i=1;i<len;i++)
	{
		sum[i]=sum[i-1]+a[s[i]-'a'];
	}
	ans=0;
	for(i=0;i<len-1;i++)
	{
		for(j=i+1;j<len;j++)
		{
			if(s[i]==s[j]&&sum[j-1]-sum[i]==0)
			{
				ans++;
			}
		}
	}
	//cout<<ans<<endl;
	printf("%I64d\n",ans);
	return 0;
}



  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 打赏
    打赏
  • 0
    评论
The `implode()` function in PHP is used to join elements of an array into a string with a specified separator. It takes two parameters: the first parameter is the separator that will be used to join the array elements, and the second parameter is the array of elements to be joined. The function returns a string that is formed by joining the elements of the array with the specified separator. For example, if we have an array of strings like this: ``` $arr = array('apple', 'banana', 'pear'); ``` We can join the elements of the array into a string using the `implode()` function like this: ``` $str = implode(',', $arr); ``` This will create a string like this: ``` "apple,banana,pear" ``` The `explode()` function, on the other hand, is used to split a string into an array of substrings using a specified separator. It takes two parameters: the first parameter is the separator that will be used to split the string, and the second parameter is the string to be split. The function returns an array of substrings. For example, if we have a string like this: ``` $str = "apple,banana,pear"; ``` We can split the string into an array of substrings using the `explode()` function like this: ``` $arr = explode(',', $str); ``` This will create an array like this: ``` array('apple', 'banana', 'pear') ``` So, basically, the `implode()` function joins an array of elements into a string using a specified separator, while the `explode()` function splits a string into an array of substrings using a specified separator.
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包

打赏作者

林下的码路

你的鼓励将是我创作的最大动力

¥1 ¥2 ¥4 ¥6 ¥10 ¥20
扫码支付:¥1
获取中
扫码支付

您的余额不足,请更换扫码支付或充值

打赏作者

实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值