結果

問題 No.465 PPPPPPPPPPPPPPPPAPPPPPPPP
ユーザー rickythetarickytheta
提出日時 2016-12-16 18:44:40
言語 C++11
(gcc 11.4.0)
結果
TLE  
実行時間 -
コード長 1,020 bytes
コンパイル時間 197 ms
コンパイル使用メモリ 24,448 KB
実行使用メモリ 14,824 KB
最終ジャッジ日時 2024-05-07 16:07:46
合計ジャッジ時間 3,721 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
14,592 KB
testcase_01 AC 2 ms
7,780 KB
testcase_02 AC 1 ms
7,776 KB
testcase_03 AC 2 ms
7,784 KB
testcase_04 AC 1 ms
6,944 KB
testcase_05 TLE -
testcase_06 -- -
testcase_07 -- -
testcase_08 -- -
testcase_09 -- -
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 -- -
権限があれば一括ダウンロードができます
コンパイルメッセージ
main.cpp: In function ‘int main()’:
main.cpp:17:8: warning: ignoring return value of ‘int scanf(const char*, ...)’ declared with attribute ‘warn_unused_result’ [-Wunused-result]
   17 |   scanf("%s",s);
      |   ~~~~~^~~~~~~~

ソースコード

diff #

#include <cstdio>
#include <cstring>

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
  for(int i=0;i<n;i++){
    headpal[i] = mana[i]>i;
  }
  for(int i=n-1;i>0;i--){
    tailpal[i-1] = tailpal[i] + (mana[n+i-1]>n-i-1);
  }
  // calc
  // fix PP/AP
  ll ans = 0;
  for(int c=2;c<n-1;c++){
    int rval = tailpal[c];
    int lval = 0;
    for(int j=0;j<c-1;j++){
      lval += (headpal[j]==1) * (mana[c+j] > c-j-2);
    }
    ans += (ll)lval * rval;
  }
  printf("%lld\n",ans);
  return 0;
}
0