manacher || 擴充套件kmp -- Best Reward HDU - 3613
題意:
T次詢問,每次給你一個字串,字串僅由26個小寫字母組成,每個小寫字母都有一個屬性值。要你計算字串的最大貢獻。把字串分成前後兩個子串,若子串迴文串則該子串貢獻為字母的屬性和,否則貢獻為0。
擴充套件kmp思路:
用擴充套件kmp求出每個迴文字首和迴文字尾並標記。在遍歷劃分子串求最大值。
擴充套件kmp思路程式碼
#include<iostream>
#include<cstdio>
#include<cstring>
#include<algorithm>
using namespace std;
const int maxn = 5e5 + 5;
const int inf = 1 << 30;
char s[maxn], t[maxn];
int alp[50], nxt[maxn], sum[maxn];
int extend1[maxn], extend2[maxn];
bool pre[maxn], tai[maxn];
void get_N(char *ch, int len){
int p, j = 0;
nxt[0] = len;
while( j + 1 < len && ch[1 + j] == ch[j]) j++; nxt[1] = j;
p = 1;
for(int i = 2; i < len; i++){
if(nxt[i - p] + i < nxt[p] + p)
nxt[i] = nxt[i - p];
else{
j = nxt[p] + p - i;
if(j < 0) j = 0;
while(i + j < len && ch[i + j] == ch[j]) j++; nxt[i] = j;
p = i;
}
}
}
void exkmp(char* str1, char* str2, int* ext) {
int len = strlen(str1);
get_N(str2, len);
int j = 0, p;
while(j < len && str1[j] == str2[j]) j++; ext[0] = j;
p = 0;
for(int i = 1; i < len; i++){
if(nxt[i - p] + i < ext[p] + p)
ext[i] = nxt[i - p];
else {
j = ext[p] + p - i;
if(j < 0) j = 0;
while(i + j < len && str1[i + j] == str2[j]) j++; ext[i] = j;
p = i;
}
}
}
int main(){
int T;
scanf("%d", &T);
while(T--){
for(int i = 0; i < 26; i++)
scanf("%d", &alp[i]);
scanf("%s", s);
int len = strlen(s);
for(int i = 0; i < len; i++){
if(i > 0) sum[i] = sum[i - 1] + alp[s[i] - 'a'];
else sum[i] = alp[s[i] - 'a'];
t[i] = s[len - 1 - i];
}
exkmp(t, s, extend1);
exkmp(s, t, extend2);
int ans = -inf;
for(int i = 1; i < len; i++){
int cnt = 0;
if(i + extend1[i] == len) cnt += sum[len - 1 - i];
int pos = len - i;
if(pos + extend2[pos] == len) cnt += sum[len - 1] - sum[pos - 1];
ans = max(ans, cnt);
}
printf("%d\n", ans);
}
}
manacher思路:
用manacher處理出所有迴文子串,遍歷迴文子串把字首迴文串和字尾迴文串標記出來。遍歷劃分子串求最大值。
manacher思路程式碼:
#include<iostream>
#include<cstdio>
#include<cstring>
#include<algorithm>
using namespace std;
const int maxn = 5e5 + 5;
const int inf = 1 << 30;
char s[maxn], t[maxn * 2];
int lengh[maxn * 2], sum[maxn * 2], alp[50];
bool pre[maxn], tai[maxn];
void manacher(){
int len = strlen(s);
int cot = 0;
t[cot++] = '0';
for(int i = 0; i < len; i++){
t[cot++] = '#';
t[cot++] = s[i];
}
t[cot++] = '#';
t[cot] = '*';
lengh[0] = 0;
int mid = 0;
for(int i = 1; i < len * 2 + 2; i++){
if(lengh[mid] + mid > i) lengh[i] = min(lengh[mid] + mid - i, lengh[mid * 2 - i]);
else lengh[i] = 1;
while(t[i + lengh[i]] == t[i - lengh[i]]) lengh[i]++;
if(i + lengh[i] > mid + lengh[mid]) mid = i;
}
memset(pre, 0, sizeof(pre));
memset(tai, 0, sizeof(tai));
for(int i = 2; i < len * 2 + 2; i++){
if(i - lengh[i] == 0) pre[lengh[i] - 2] = true;
if(i + lengh[i] == len * 2 + 2) tai[len - lengh[i] + 1] = true;
}
int ans = -inf;
for(int i = 0; i < len - 1; i++){
int cnt = 0;
if(pre[i]) cnt += sum[i];
if(tai[i + 1]) cnt += sum[len - 1] - sum[i];
ans = max(ans, cnt);
}
printf("%d\n", ans);
}
int main(){
int T;
scanf("%d", &T);
while(T--){
for(int i = 0; i < 26; i++)
scanf("%d", &alp[i]);
scanf("%s", s);
int len = strlen(s);
for(int i = 0; i < len; i++){
if(i > 0) sum[i] = sum[i - 1] + alp[s[i] - 'a'];
else sum[i] = alp[s[i] - 'a'];
}
manacher();
}
}
相關文章
- 專題十六 KMP & 擴充套件KMP & Manacher【Kuangbin】KMP套件
- [kuangbin帶你飛]專題十六 KMP & 擴充套件KMP & Manacher - I - Simpsons’ Hidden TalentsKMP套件
- Z 函式(擴充套件KMP)函式套件KMP
- 神奇的字串匹配:擴充套件KMP演算法字串匹配套件KMP演算法
- P5410 【模板】擴充套件 KMP(Z 函式)套件KMP函式
- HDU 3234 Exclusive-OR 擴充套件並查集套件並查集
- kotlin 擴充套件(擴充套件函式和擴充套件屬性)Kotlin套件函式
- hdu Yet another end of the world(擴充套件歐幾里得定理推論)套件
- WCF擴充套件:行為擴充套件Behavior Extension套件
- KMP, Manacher, SA 存在的意義KMP
- 【Kotlin】擴充套件屬性、擴充套件函式Kotlin套件函式
- HDU 1222 Wolf and Rabbit (擴充套件歐幾里德應用)套件
- Sanic 擴充套件套件
- ORACLE 擴充套件Oracle套件
- 擴充套件工具套件
- 擴充套件歐幾里得套件
- DOM擴充套件套件
- 擴充套件ACL套件
- Lua擴充套件套件
- 照片擴充套件套件
- 擴充套件篇套件
- disable or 擴充套件套件
- 擴充套件表套件
- Mybatis擴充套件MyBatis套件
- JMeter 擴充套件開發:擴充套件 TCP 取樣器JMeter套件TCP
- 字串學習總結(Hash & Manacher & KMP)字串KMP
- Manacher演算法、KMP演算法演算法KMP
- ?用Chrome擴充套件管理器, 管理你的擴充套件Chrome套件
- ASP.NET Core擴充套件庫之Http通用擴充套件ASP.NET套件HTTP
- php7安裝redis擴充套件和memcache擴充套件PHPRedis套件
- 分類擴充套件套件
- 擴充套件表示式套件
- 新增php擴充套件PHP套件
- swift擴充套件ExtensionsSwift套件
- iOS 通知擴充套件iOS套件
- 可擴充套件性套件
- 19-擴充套件套件
- Nmap 擴充套件(四)套件