結果

問題 No.765 ukuku 2
ユーザー pekempeypekempey
提出日時 2018-12-13 05:32:48
言語 C
(gcc 12.3.0)
結果
WA  
実行時間 -
コード長 2,231 bytes
コンパイル時間 587 ms
コンパイル使用メモリ 31,496 KB
実行使用メモリ 11,904 KB
最終ジャッジ日時 2023-10-25 09:08:16
合計ジャッジ時間 14,609 ms
ジャッジサーバーID
(参考情報)
judge15 / judge14
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 4 ms
6,700 KB
testcase_01 AC 3 ms
6,700 KB
testcase_02 AC 3 ms
6,700 KB
testcase_03 AC 3 ms
6,700 KB
testcase_04 AC 3 ms
6,700 KB
testcase_05 AC 3 ms
6,700 KB
testcase_06 AC 3 ms
6,700 KB
testcase_07 AC 3 ms
6,700 KB
testcase_08 AC 3 ms
6,700 KB
testcase_09 AC 4 ms
6,700 KB
testcase_10 AC 3 ms
6,700 KB
testcase_11 AC 3 ms
6,700 KB
testcase_12 AC 3 ms
6,700 KB
testcase_13 AC 3 ms
6,700 KB
testcase_14 AC 3 ms
6,700 KB
testcase_15 AC 3 ms
6,700 KB
testcase_16 AC 3 ms
6,700 KB
testcase_17 AC 3 ms
6,700 KB
testcase_18 AC 3 ms
6,700 KB
testcase_19 AC 3 ms
6,700 KB
testcase_20 AC 3 ms
6,700 KB
testcase_21 AC 3 ms
6,700 KB
testcase_22 AC 3 ms
6,700 KB
testcase_23 AC 4 ms
6,700 KB
testcase_24 AC 4 ms
6,700 KB
testcase_25 AC 3 ms
6,700 KB
testcase_26 AC 4 ms
6,700 KB
testcase_27 AC 3 ms
6,700 KB
testcase_28 AC 4 ms
6,700 KB
testcase_29 AC 4 ms
6,700 KB
testcase_30 WA -
testcase_31 AC 488 ms
10,768 KB
testcase_32 AC 404 ms
10,368 KB
testcase_33 AC 446 ms
11,904 KB
testcase_34 AC 446 ms
11,904 KB
testcase_35 AC 735 ms
11,392 KB
testcase_36 AC 738 ms
11,392 KB
testcase_37 AC 466 ms
11,456 KB
testcase_38 WA -
testcase_39 WA -
testcase_40 AC 572 ms
10,836 KB
testcase_41 WA -
testcase_42 WA -
testcase_43 AC 544 ms
10,888 KB
testcase_44 AC 526 ms
10,932 KB
testcase_45 AC 605 ms
11,340 KB
testcase_46 AC 511 ms
10,848 KB
testcase_47 AC 591 ms
11,244 KB
testcase_48 AC 590 ms
11,208 KB
testcase_49 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <stdio.h>
#include <stdlib.h>
#include <string.h>

#define N 400001
#define M 262144

int n, k;
char s[N + 1];
int sa[N + 1], ra[N + 1], ha[N + 1], tmp[N + 1];
int sg[M * 2];

int min(int x, int y) {
    return x < y ? x : y;
}

int max(int x, int y) {
    return x > y ? x : y;
}

int cmp(const void *i_, const void *j_) {
    int i = *(int *)i_;
    int j = *(int *)j_;
    if (ra[i] != ra[j]) return ra[i] - ra[j];
    int ri = i + k <= n ? ra[i + k] : -1;
    int rj = j + k <= n ? ra[j + k] : -1;
    return ri - rj;
}

void buildsa() {
    for (int i = 0; i <= n; i++) {
	ra[i] = s[i];
	sa[i] = i;
    }
    k = 1;
    for (; k <= n; k *= 2) {
	qsort(sa, n + 1, sizeof(int), cmp);
	tmp[sa[0]] = 0;
	for (int i = 0; i < n; i++) {
	    tmp[sa[i + 1]] = tmp[sa[i]] + (cmp(&sa[i], &sa[i + 1]) < 0);
	}
	memcpy(ra, tmp, sizeof(ra));
    }
}

int buildha() {
    int k = 0;
    for (int i = 0; i <= n; i++) {
	if (ra[i] == n) continue;
	int j = sa[ra[i] + 1];
	while (s[i + k] == s[j + k]) k++;
	ha[ra[i]] = k;
	if (k > 0) k--;
    }
    for (int i = 0; i <= n; i++) {
	sg[i + M] = ha[i];
    }
    for (int i = M - 1; i > 0; i--) {
	sg[i] = min(sg[i * 2], sg[i * 2 + 1]);
    }
}

int lcp(int i, int j) {
    if (i == j) return n - i;
    i = ra[i];
    j = ra[j];
    int l = min(i, j) + M;
    int r = max(i, j) + M;
    int res = 2147483647;
    for (; l < r; l >>= 1, r >>= 1) {
	if (l & 1) res = min(res, sg[l++]);
	if (r & 1) res = min(res, sg[--r]);
    }
    return res;
}

int solve(int i, int j, int n1, int n2) {
    int h = lcp(i, j);
    if (h == n1 || h == n2) return h;
    i += h;
    j += h;
    return h + max(lcp(i + 1, j), lcp(i, j + 1));
}

int main() {
    scanf("%s", s);
    int m = strlen(s);
    for (int i = 0; i < m; i++) {
	s[m + 1 + i] = s[m - 1 - i];
    }
    s[m] = '$';
    n = m * 2 + 1;
    s[n] = 0;
    buildsa();
    buildha();
    int ans = 0;
    /* even length */
    for (int i = 0; i < m; i++) {
	int x = 2 * solve(i + 1, n - i, m - i - 1, i);
	x = min(x, m - 2);
	ans = max(ans, x + 1);
    }
    /* odd length */
    for (int i = 1; i < m; i++) {
	int x = 2 * solve(i, n - i, m - i, i);
	x = min(x, m - 1);
	ans = max(ans, x);
    }
    printf("%d\n", ans);
    return 0;
}

0