字符串-字符串哈希-入门-bzoj2084

根本不用哈希好不好,直接根据性质暴力做,复杂度O(答案个数)。
不过也可能只是凑巧数据没有卡这种方法。
最坏情况下串是01010101010101…,答案达到n^2(得用long long存储了),就TLE了。
不知道使用字符串哈希的方法可不可以解决这个问题。

#include
#define rep(i,l,r) for(int i=(l);i<=(r);i++)
#define per(i,r,l) for(int i=(r);i>=(l);i--)
using namespace std;
int n,ans;
char s[500010];
int main(){
	ios::sync_with_stdio(false); cin.tie(0);
	cin>>n>>s;
	rep(i,1,n-1)
		for(int l=i,r=i+1;l>0&&r<=n;l--,r++)
			if((s[l-1]-'0')+(s[r-1]-'0')==1) ans++;
				else break;
	cout<<ans;
	return 0;
}

你可能感兴趣的:(字符串-字符串哈希)