結果

問題 No.599 回文かい
ユーザー squidsquid
提出日時 2017-11-25 00:02:16
言語 C++11
(gcc 11.4.0)
結果
TLE  
実行時間 -
コード長 1,089 bytes
コンパイル時間 1,431 ms
コンパイル使用メモリ 162,776 KB
実行使用メモリ 8,448 KB
最終ジャッジ日時 2024-05-05 11:47:45
合計ジャッジ時間 11,824 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 TLE -
testcase_01 -- -
testcase_02 -- -
testcase_03 -- -
testcase_04 -- -
testcase_05 -- -
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 -- -
evil_0.txt -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<bits/stdc++.h>
using namespace std;

string in;
vector<string> sq_S;
int ans=0;

int main(){

    cin>>in;

    int n=in.size();
    for(int i=0; i<n/2+!!(n%2);){
        for(int j=1; j<n/2; j++){
            if(in.substr(i,j)==in.substr(n-i-j,j)){
                sq_S.push_back(in.substr(i,j));
                //cout<<i<<endl;
                i+=j;
                //cout<<i<<endl;
                //cout<<endl;
                continue;
            }
            //cout<<'a'<<endl;
        }
    }
    int n_sq=sq_S.size();
    /*for(int i=0; i<n_sq; i++){
        cout<<sq_S.back()<<endl;
        sq_S.pop_back();
    }*/
    ans=n_sq;

    bool flag2=false;
    for(int i=1; i<n_sq; i++){
        int flag=true;
        for(int j=0; j<i/2+!!(i%2); j++){
            //cout<<sq_S[j]<<' '<<sq_S[i-j]<<endl;
            flag&=(sq_S[j]==sq_S[i-j]);
        }
        if(flag){
            flag2=true;
            //cout<<'a'<<endl;
            ans++;
        }
    }

    if(n_sq==0){
        cout<<1<<endl;
    }
    else{
        cout<<ans-flag2<<endl;
    }

    return 0;
}
0