結果

問題 No.465 PPPPPPPPPPPPPPPPAPPPPPPPP
ユーザー rickythetarickytheta
提出日時 2016-12-16 16:53:49
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
TLE  
実行時間 -
コード長 1,014 bytes
コンパイル時間 1,439 ms
コンパイル使用メモリ 170,092 KB
実行使用メモリ 20,964 KB
最終ジャッジ日時 2024-05-07 16:07:28
合計ジャッジ時間 5,068 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 3 ms
14,836 KB
testcase_01 AC 2 ms
9,800 KB
testcase_02 AC 2 ms
9,808 KB
testcase_03 AC 2 ms
9,808 KB
testcase_04 AC 2 ms
9,800 KB
testcase_05 AC 5 ms
10,152 KB
testcase_06 AC 13 ms
13,944 KB
testcase_07 AC 6 ms
10,380 KB
testcase_08 AC 16 ms
14,000 KB
testcase_09 TLE -
testcase_10 -- -
testcase_11 -- -
testcase_12 -- -
testcase_13 -- -
testcase_14 -- -
testcase_15 -- -
testcase_16 -- -
testcase_17 -- -
testcase_18 -- -
testcase_19 -- -
testcase_20 -- -
testcase_21 -- -
32_ratsliveonnoevilstar.txt -- -
権限があれば一括ダウンロードができます

ソースコード

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