結果

問題 No.765 ukuku 2
ユーザー もりをもりを
提出日時 2019-07-11 17:33:38
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 3,149 bytes
コンパイル時間 1,896 ms
コンパイル使用メモリ 171,792 KB
実行使用メモリ 29,568 KB
最終ジャッジ日時 2024-04-25 12:34:11
合計ジャッジ時間 7,231 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 1 ms
5,376 KB
testcase_02 AC 2 ms
5,376 KB
testcase_03 AC 2 ms
5,376 KB
testcase_04 AC 2 ms
5,376 KB
testcase_05 AC 2 ms
5,376 KB
testcase_06 AC 2 ms
5,376 KB
testcase_07 WA -
testcase_08 WA -
testcase_09 WA -
testcase_10 WA -
testcase_11 WA -
testcase_12 WA -
testcase_13 WA -
testcase_14 WA -
testcase_15 WA -
testcase_16 WA -
testcase_17 WA -
testcase_18 WA -
testcase_19 AC 2 ms
5,376 KB
testcase_20 AC 2 ms
5,376 KB
testcase_21 AC 2 ms
5,376 KB
testcase_22 AC 2 ms
5,376 KB
testcase_23 WA -
testcase_24 WA -
testcase_25 WA -
testcase_26 WA -
testcase_27 WA -
testcase_28 WA -
testcase_29 WA -
testcase_30 WA -
testcase_31 WA -
testcase_32 WA -
testcase_33 AC 192 ms
29,440 KB
testcase_34 AC 191 ms
29,440 KB
testcase_35 AC 202 ms
29,440 KB
testcase_36 WA -
testcase_37 AC 220 ms
29,436 KB
testcase_38 AC 212 ms
29,312 KB
testcase_39 WA -
testcase_40 WA -
testcase_41 WA -
testcase_42 WA -
testcase_43 WA -
testcase_44 WA -
testcase_45 WA -
testcase_46 WA -
testcase_47 WA -
testcase_48 WA -
testcase_49 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
typedef long long ll;
#define REP(i,n) for(int (i)=0;(i)<(n);++(i))
#define FOR(i,a,b) for(int (i)=(a);(i)<(b);++(i))
#define EACH(e,v) for(auto& e:v)
#define ALL(v) (v).begin(),(v).end()
#define SORT(v) sort(ALL(v))
#define RSORT(v) sort((v).rbegin(),(v).rend())
#define PERM(v) SORT(v);for(bool c##p=1;c##p;c##p=next_permutation(ALL(v)))
#define UNIQUE(v) SORT(v);(v).erase(unique(ALL(v)),(v).end())
template<typename A,typename B> inline bool chmax(A &a,const B &b){if(a<b){a=b;return 1;}return 0;}
template<typename A,typename B> inline bool chmin(A &a,const B &b){if(a>b){a=b;return 1;}return 0;}
// #define int long

const int MOD = (int)1e9 + 7;
const int INF = 1 << 30;
const ll INFF = 1LL << 62;

// 下にy, 右にx
enum {R, U, L, D};
const int dx[] = {1,  0, -1, 0};
const int dy[] = {0, -1,  0, 1};

template<int mod, int base=10007>
struct RollingHash {
    vector<ll> hsh, pwr;
    ll umod(ll n) { return (n % mod + mod) % mod; }
    RollingHash(const string &s) {
        int sz = (int)s.size();
        hsh.assign(sz + 1, 0);
        pwr.assign(sz + 1, 0);  pwr[0] = 1;
        for (int i = 0; i < sz; ++i) {
            hsh[i + 1] = umod(hsh[i] * base + s[i]);
            pwr[i + 1] = umod(pwr[i] * base);
        }
    }
    // [l, r)
    ll get(int l, int r) {
        return umod(hsh[r] - hsh[l] * pwr[r - l]);
    }
    // h1 <- h2
    ll join(ll h1, ll h2, int h2_sz) {
        return umod(h1 * pwr[h2_sz] + h2);
    }
};
using RH1 = RollingHash<(int)1e9 + 7>;
using RH2 = RollingHash<(int)1e9 + 9>;
using RH = pair<RH1, RH2>;
using H = pair<ll, ll>;
RH init(const string &s) { return make_pair(RH1(s), RH2(s)); }
H get(RH &rh, int l, int r) { return make_pair(rh.first.get(l, r), rh.second.get(l, r)); }
H join(RH &rh, ll h1, ll h2, int h2len) {
    return make_pair(rh.first.join(h1, h2, h2len), rh.second.join(h1, h2, h2len));
}

signed main() {

    string S2;
    cin >> S2;

    int N2 = S2.size();
    string S;
    for (int i = 0; i < N2; ++i) {
        S += S2[i];
        if (i != N2 - 1) S += "a";
    }

    int N = S.size();
    string T(S);
    reverse(T.begin(), T.end());
    
    RH S_rh = init(S);
    RH T_rh = init(T);

    // 中心cen, 腕の長さmが回文であるならtrue
    function<bool(int, int)> check = [&](int cen, int m) {
        if (cen + m + 1 > N) return false;
        H s = get(S_rh, cen, cen + m + 1);
        int cen_rev = N - 1 - cen;
        if (cen_rev + m + 1 > N) return false;
        H t = get(T_rh, cen_rev, cen_rev + m + 1);
        return (s == t);
    };

    ll res = 1;
    // i文字目を中心とする最長回文
    for (int i = 0; i < N; i++) {
        ll ok = 0, ng = N;
        while (abs(ok - ng) > 1) {
            ll mid = (ok + ng) / 2;
            if (check(i, mid)) {
                ok = mid;
            } else {
                ng = mid;
            }
        }
        // iが奇数なら偶数長の回文
        // iが偶数なら奇数長の回文
        // chmax(res, ok);
        if (i % 2 == 0) chmax(res, ok + 1);
        else chmax(res, ok);
    }
    cout << min<ll>(N2 - 1, res) << endl;

}
0