UVA 12378 Ball Blasting Game Manacher裸題,12378blasting

來源:互聯網
上載者:User

UVA 12378 Ball Blasting Game Manacher裸題,12378blasting

題目連結:點擊開啟連結

題意:

消除字串遊戲,選擇一個字母,則會消除和該字母相同且連續的一段,然後左右兩邊合攏,若左右兩邊字母相同則再次消除掉。直到合攏時兩邊字母不相同。

問這樣連續消除的最大次數。

思路:

先把連續相同的字母當成一個字母,然後求最長迴文串,

則答案就是(最長長度+1)/;2

#pragma comment(linker, "/STACK:1024000000,1024000000")#include <cstdio>#include <cstring>#include <iostream>using namespace std;const int MAXN = 110010;//字串長度<MAXNchar Ma[MAXN * 2];int Mp[MAXN * 2];int Manacher(char s[]) {int l = 0, len = strlen(s);Ma[l++] = '$';Ma[l++] = '#';for (int i = 0; i<len; i++)  {Ma[l++] = s[i];Ma[l++] = '#';}Ma[l] = 0;int mx = 0, id = 0;for (int i = 0; i<l; i++)  {Mp[i] = mx>i ? min(Mp[2 * id - i], mx - i) : 1;while (Ma[i + Mp[i]] == Ma[i - Mp[i]])Mp[i]++;if (i + Mp[i]>mx)   {mx = i + Mp[i];    id = i;}}int ans = 0;for (int i = 0; i<2 * len + 2; i++)ans = max(ans, Mp[i] - 1);return ans;}char d[100100], s[100100];int main(){    int T; cin>>T;    while (T--)  {        scanf("%s", d);        int top = 0;        s[0] = d[0];        for(int i = 1; d[i]; i++)            if(d[i]!=s[top])                s[++top] = d[i];        s[++top] = 0;printf("%d\n", (Manacher(s)+1)/2);}return 0;}


相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.