結果

問題 No.765 ukuku 2
ユーザー kriiikriii
提出日時 2018-12-13 02:15:24
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 2,106 bytes
コンパイル時間 384 ms
コンパイル使用メモリ 44,724 KB
実行使用メモリ 128,524 KB
最終ジャッジ日時 2024-09-25 04:08:21
合計ジャッジ時間 8,181 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 AC 3 ms
9,288 KB
testcase_02 WA -
testcase_03 WA -
testcase_04 AC 3 ms
9,292 KB
testcase_05 WA -
testcase_06 AC 3 ms
9,292 KB
testcase_07 AC 3 ms
9,288 KB
testcase_08 AC 3 ms
9,292 KB
testcase_09 AC 3 ms
9,292 KB
testcase_10 AC 3 ms
9,420 KB
testcase_11 AC 4 ms
9,292 KB
testcase_12 AC 3 ms
9,292 KB
testcase_13 AC 3 ms
9,288 KB
testcase_14 AC 3 ms
9,296 KB
testcase_15 AC 3 ms
9,424 KB
testcase_16 AC 3 ms
9,296 KB
testcase_17 AC 3 ms
9,296 KB
testcase_18 AC 3 ms
9,292 KB
testcase_19 WA -
testcase_20 WA -
testcase_21 WA -
testcase_22 AC 3 ms
9,424 KB
testcase_23 AC 3 ms
9,424 KB
testcase_24 AC 3 ms
9,300 KB
testcase_25 AC 3 ms
9,428 KB
testcase_26 AC 3 ms
9,304 KB
testcase_27 AC 4 ms
9,304 KB
testcase_28 AC 3 ms
9,424 KB
testcase_29 AC 3 ms
9,168 KB
testcase_30 AC 273 ms
106,080 KB
testcase_31 AC 261 ms
103,264 KB
testcase_32 AC 214 ms
88,260 KB
testcase_33 WA -
testcase_34 WA -
testcase_35 AC 368 ms
128,304 KB
testcase_36 AC 360 ms
128,396 KB
testcase_37 AC 392 ms
128,400 KB
testcase_38 AC 389 ms
128,396 KB
testcase_39 AC 384 ms
128,524 KB
testcase_40 AC 273 ms
106,224 KB
testcase_41 AC 305 ms
113,264 KB
testcase_42 AC 320 ms
122,240 KB
testcase_43 AC 292 ms
108,520 KB
testcase_44 AC 294 ms
111,212 KB
testcase_45 AC 335 ms
123,008 KB
testcase_46 AC 284 ms
108,396 KB
testcase_47 AC 340 ms
127,852 KB
testcase_48 AC 327 ms
123,648 KB
testcase_49 AC 329 ms
125,312 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++;
    bas[0][0] = (long long)S % mod[0]; bas[0][0] |= 512;
    bas[1][0] = (long long)S % mod[1]; bas[1][0] |= 512;
    
    for (int k=0;k<2;k++){
        for (int l=0;l<20;l++) A[k][0][l] = B[k][L+1][l] = -1;
        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;
        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;
        ans = max(ans, u*2);
    }
    printf ("%d\n",ans);
    
    return 0;
}
0