結果

問題 No.273 回文分解
ユーザー ngtkanangtkana
提出日時 2020-03-22 02:04:53
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 788 bytes
コンパイル時間 2,406 ms
コンパイル使用メモリ 202,088 KB
実行使用メモリ 4,384 KB
最終ジャッジ日時 2023-08-25 20:30:56
合計ジャッジ時間 4,253 ms
ジャッジサーバーID
(参考情報)
judge13 / judge12
このコードへのチャレンジ(β)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 AC 1 ms
4,380 KB
testcase_02 AC 1 ms
4,380 KB
testcase_03 AC 1 ms
4,376 KB
testcase_04 WA -
testcase_05 AC 2 ms
4,380 KB
testcase_06 AC 1 ms
4,384 KB
testcase_07 AC 2 ms
4,380 KB
testcase_08 AC 2 ms
4,380 KB
testcase_09 AC 2 ms
4,380 KB
testcase_10 AC 1 ms
4,380 KB
testcase_11 AC 2 ms
4,380 KB
testcase_12 AC 2 ms
4,380 KB
testcase_13 AC 2 ms
4,380 KB
testcase_14 AC 2 ms
4,380 KB
testcase_15 AC 2 ms
4,376 KB
testcase_16 AC 1 ms
4,376 KB
testcase_17 AC 1 ms
4,380 KB
testcase_18 WA -
testcase_19 AC 2 ms
4,384 KB
testcase_20 AC 1 ms
4,380 KB
testcase_21 AC 2 ms
4,380 KB
testcase_22 AC 1 ms
4,376 KB
testcase_23 WA -
testcase_24 AC 2 ms
4,380 KB
testcase_25 AC 2 ms
4,376 KB
testcase_26 AC 2 ms
4,380 KB
testcase_27 AC 2 ms
4,376 KB
testcase_28 AC 1 ms
4,380 KB
testcase_29 AC 1 ms
4,380 KB
testcase_30 AC 1 ms
4,380 KB
testcase_31 WA -
testcase_32 AC 2 ms
4,376 KB
testcase_33 AC 1 ms
4,380 KB
testcase_34 AC 1 ms
4,376 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<bits/stdc++.h>
using lint=long long;
int main(){
    std::cin.tie(nullptr);std::ios_base::sync_with_stdio(false);
    std::cout.setf(std::ios_base::fixed);std::cout.precision(15);
    std::string s;std::cin>>s;
    {
        std::string swp="$";
        for(char c:s){
            swp.push_back(c);
            swp.push_back('$');
        }
        swp.swap(s);
    }
    lint n=s.length();
    std::vector<lint>a(n);
    for(lint i=0,j=0;i<n;){
        for(;0<=i-j&&i+j<n&&s.at(i-j)==s.at(i+j);j++);
        a.at(i)=j;
        lint k=1;
        for(;0<=i-k&&k+a.at(i-k)<j;k++){
            a.at(i+k)=a.at(i-k);
        }
        i+=k,j-=k;
    }
    lint ans=0;
    for(lint i=0;i<n;i++){
        lint x=a.at(i)-1;
        if(x<n&&ans<x)ans=x;
    }
    std::cout<<ans<<'\n';
}
0