Girls' research HDU - 3294

//计算左右端点,转换字符串   然后用cin的时候会TLE。。。 用了    ios::sync_with_stdio(false);也不行,...

#include 
#include 
#include 
#include 

using namespace std;

const int MAXN=1e6+10;

string t;
char str[MAXN];
int l, r;
void Init() {
	t = "$#";

	int len=strlen(str);

	for(int i=0; i i) p[i] = min(p[2 * id - i], Mx - i);
		else p[i] = 1 ;

		while(t[i-p[i]] == t[i+p[i]]) p[i]++;

		if(p[i]+i > Mx) {
			Mx = p[i] + i;
			id = i;
		}

		if(MAX < p[i]-1) {
			MAX = p[i]-1;
			l = (i-MAX)/2;
			r = (i+MAX-1)/2-1;
		}
	}
	return MAX;
}

int main() {

	int cnt=1;
	char c;
	while(~(scanf("%c", &c))) {
	//	cin >> str;
	//	cin.get();
	scanf("%s", str);
	getchar();

		if(Manacher()>1) {
			printf("%d %d\n", l, r);

			int t=c-'a';

			for(int i=l; i<=r; i++)
				printf("%c", 'a'+(str[i]-'a'-t+26)%26);
			printf("\n");
		} else printf("No solution!\n");
	}
	return 0;
}

 

你可能感兴趣的:(HDU,Manacher)