結果

問題 No.765 ukuku 2
ユーザー kriiikriii
提出日時 2018-12-13 02:42:22
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 384 ms / 3,000 ms
コード長 2,116 bytes
コンパイル時間 308 ms
コンパイル使用メモリ 44,376 KB
実行使用メモリ 128,384 KB
最終ジャッジ日時 2024-09-25 04:09:11
合計ジャッジ時間 7,968 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 2 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 AC 2 ms
5,376 KB
testcase_08 AC 2 ms
5,376 KB
testcase_09 AC 2 ms
5,376 KB
testcase_10 AC 2 ms
5,376 KB
testcase_11 AC 2 ms
5,376 KB
testcase_12 AC 2 ms
5,376 KB
testcase_13 AC 2 ms
5,376 KB
testcase_14 AC 2 ms
5,376 KB
testcase_15 AC 2 ms
5,376 KB
testcase_16 AC 2 ms
5,376 KB
testcase_17 AC 2 ms
5,376 KB
testcase_18 AC 2 ms
5,376 KB
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 AC 2 ms
5,376 KB
testcase_24 AC 2 ms
5,376 KB
testcase_25 AC 2 ms
5,376 KB
testcase_26 AC 2 ms
5,376 KB
testcase_27 AC 2 ms
5,376 KB
testcase_28 AC 2 ms
5,376 KB
testcase_29 AC 2 ms
5,376 KB
testcase_30 AC 277 ms
99,712 KB
testcase_31 AC 284 ms
96,896 KB
testcase_32 AC 215 ms
81,152 KB
testcase_33 AC 383 ms
128,256 KB
testcase_34 AC 354 ms
128,272 KB
testcase_35 AC 357 ms
128,268 KB
testcase_36 AC 354 ms
128,256 KB
testcase_37 AC 379 ms
128,256 KB
testcase_38 AC 384 ms
128,384 KB
testcase_39 AC 375 ms
128,256 KB
testcase_40 AC 272 ms
100,736 KB
testcase_41 AC 295 ms
108,800 KB
testcase_42 AC 319 ms
115,968 KB
testcase_43 AC 282 ms
104,064 KB
testcase_44 AC 286 ms
105,600 KB
testcase_45 AC 327 ms
116,992 KB
testcase_46 AC 278 ms
103,040 KB
testcase_47 AC 322 ms
120,832 KB
testcase_48 AC 320 ms
118,784 KB
testcase_49 AC 322 ms
118,784 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <stdio.h>
#include <algorithm>
using namespace std;

int mod[2] = {1000000007,1000000009};
long long bas[2][20];

char S[200200]; int L;
long long A[2][200200][20], B[2][200200][20];

int f(int i, int j)
{
    int r = 0;
    for (int l=19;l>=0;l--){
        if (i < 1 || j > L) break;
        
        bool good = true;
        for (int k=0;k<2;k++){
            if (A[k][i][l] == -1 || B[k][j][l] == -1 || A[k][i][l] != B[k][j][l]){
                good = false;
                break;
            }
        }
        
        if (good){
            i -= (1 << l);
            j += (1 << l);
            r += (1 << l);
        }
    }
    return r;
}

int main()
{
    scanf ("%s",S+1);
    while (S[L+1]) L++;
    
    for (int k=0;k<2;k++){
        for (int l=0;l<20;l++) A[k][0][l] = B[k][L+1][l] = -1;
        bas[k][0] = (long long)S % mod[k]; bas[k][0] |= 512;
        for (int l=1;l<20;l++) bas[k][l] = bas[k][l-1] * bas[k][l-1] % mod[k];
    }
    
    for (int k=0;k<2;k++) for (int i=1;i<=L;i++){
        A[k][i][0] = S[i];
        for (int l=1;l<20;l++){
            int s = 1 << (l-1);
            if (A[k][i][l-1] == -1 || i - s < 0 || A[k][i-s][l-1] == -1)
                A[k][i][l] = -1;
            else
                A[k][i][l] = (A[k][i-s][l-1] * bas[k][l-1] + A[k][i][l-1]) % mod[k];
        }
    }
    
    for (int k=0;k<2;k++) for (int i=L;i>=1;i--){
        B[k][i][0] = S[i];
        for (int l=1;l<20;l++){
            int s = 1 << (l-1);
            if (B[k][i][l-1] == -1 || i + s > L || B[k][i+s][l-1] == -1)
                B[k][i][l] = -1;
            else
                B[k][i][l] = (B[k][i+s][l-1] * bas[k][l-1] + B[k][i][l-1]) % mod[k];
        }
    }
    
    int ans = 0;
    for (int i=1;i<=L;i++){
        int l = f(i,i);
        int u = max(f(i-l-1,i+l),f(i-l,i+l+1)) + l;
        if (u * 2 - 1 == L) u--;
        ans = max(ans, u*2-1);
    }
    for (int i=1;i<L;i++){
        int l = f(i,i+1);
        int u = max(f(i-l-1,i+1+l),f(i-l,i+1+l+1)) + l;
        if (u * 2 == L) u--;
        ans = max(ans, u*2);
    }
    printf ("%d\n",ans);
    
    return 0;
}
0