結果

問題 No.465 PPPPPPPPPPPPPPPPAPPPPPPPP
ユーザー rickythetarickytheta
提出日時 2016-12-16 16:53:49
言語 C++14
(gcc 13.3.0 + boost 1.87.0)
結果
TLE  
実行時間 -
コード長 1,014 bytes
コンパイル時間 1,482 ms
コンパイル使用メモリ 169,752 KB
実行使用メモリ 28,888 KB
最終ジャッジ日時 2024-11-30 10:26:21
合計ジャッジ時間 27,865 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 3 ms
16,752 KB
testcase_01 AC 3 ms
23,780 KB
testcase_02 AC 2 ms
14,580 KB
testcase_03 AC 3 ms
23,712 KB
testcase_04 AC 2 ms
14,576 KB
testcase_05 AC 5 ms
17,104 KB
testcase_06 AC 13 ms
20,888 KB
testcase_07 AC 5 ms
25,728 KB
testcase_08 AC 16 ms
20,712 KB
testcase_09 TLE -
testcase_10 TLE -
testcase_11 AC 28 ms
28,640 KB
testcase_12 AC 16 ms
20,528 KB
testcase_13 AC 13 ms
28,888 KB
testcase_14 AC 16 ms
20,904 KB
testcase_15 TLE -
testcase_16 TLE -
testcase_17 TLE -
testcase_18 TLE -
testcase_19 TLE -
testcase_20 AC 275 ms
13,824 KB
testcase_21 AC 839 ms
14,208 KB
32_ratsliveonnoevilstar.txt TLE -
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>

using namespace std;

typedef long long ll;

char s[525252];
char ss[1252525];
int n,m;

int mana[1252525];
int headpal[525252];
int tailpal[525252];

int main(){
  scanf("%s",s);
  n = strlen(s);
  for(int i=0;i<n;i++){
    ss[2*i] = s[i];
    ss[2*i+1] = '$';
  }
  m = 2*n-1;
  // manacher
  {
    int i=0,j=0;
    while(i<m){
      while(i-j>=0 && i+j<m && ss[i-j]==ss[i+j])j++;
      mana[i] = j;
      int k=1;
      while(i-k>=0 && i+k<m && k+mana[i-k]<j){
        mana[i+k] = mana[i-k];
        k++;
      }
      i += k;
      j -= k;
    }
  }
  // headpal, tailpal
  vector<int> hps;
  for(int i=0;i<n;i++){
    headpal[i] = mana[i]>i;
    if(headpal[i]==1){
      hps.push_back(i+1);
    }
  }
  for(int i=n-1;i>0;i--){
    tailpal[i-1] = tailpal[i] + (mana[n+i-1]>n-i-1);
  }
  ll ans = 0;
  for(int c=2;c<n-1;c++){
    int rval = tailpal[c];
    for(auto j : hps){
      if(j>=c)break;
      if(mana[c+j-1]>c-j-1)ans += rval;
    }
  }
  printf("%lld\n",ans);
  return 0;
}
0