QOJ.ac

QOJ

IDProblemSubmitterResultTimeMemoryLanguageFile sizeSubmit timeJudge time
#103118#5065. Beautiful Stringlonytree#TL 649ms198484kbC++142.8kb2023-05-04 15:06:332023-05-04 15:06:35

Judging History

你现在查看的是最新测评结果

  • [2023-08-10 23:21:45]
  • System Update: QOJ starts to keep a history of the judgings of all the submissions.
  • [2023-05-04 15:06:35]
  • 评测
  • 测评结果:TL
  • 用时:649ms
  • 内存:198484kb
  • [2023-05-04 15:06:33]
  • 提交

answer


#pragma GCC optimize("Ofast,no-stack-protector,unroll-loops")
#pragma GCC target("sse,sse2,sse3,ssse3,sse4,sse4.1,sse4.2,popcnt,abm,mmx,avx,avx2,fma")

#include <bits/stdc++.h>

using namespace std; const int maxn = 1e4 + 5, maxm = 5e3 + 5; typedef long long ll;

int tot = 1, lst = 1, ch[maxn][26], len[maxn], fa[maxn];

inline void insert(char c)
{
    int p = lst, q = ++tot; lst = q, len[q] = len[p] + 1; while (p && !ch[p][c]) ch[p][c] = q, p = fa[p];
    if (!p) { fa[q] = 1; return; }
    int x = ch[p][c]; if (len[x] == len[p] + 1) { fa[q] = x; return; }
    int y = ++tot; len[y] = len[p] + 1, memcpy(ch[y], ch[x], sizeof(int) * 26), fa[y] = fa[x], fa[q] = fa[x] = y;
    while (p && ch[p][c] == x) ch[p][c] = y, p = fa[p];
}

inline void clear()
{
    memset(ch, 0, sizeof(int) * 26 * (tot + 1));
    memset(len, 0, sizeof(int) * (tot + 1));
    memset(fa, 0, sizeof(int) * (tot + 1));
    tot = lst = 1;
}

int n;

char s[maxn];

int hs[maxm][maxm];

int zu[maxm][maxm];

int sm[maxn];

inline void solve()
{
    // scanf("%d", &n);
    scanf("%s", s + 1), n = strlen(s + 1);
    clear();
    for (int i = 1; i <= n; i++) insert(s[i] - '0');
    // for (int i = 1; i <= n; i++)
    // {
    //     int u = 1;
    //     for (int j = i; j <= n; j++)
    //     {
    //         u = ch[u][s[j] - '0'];
    //         // assert(len[u] >= j - i + 1);
    //         while (len[fa[u]] >= j - i + 1) u = fa[u]/*, cerr << i << ' ' << j << ' ' << u << ' ' << fa[u] << ' ' << len[u] << endl*/;
    //         hs[i][j] = u;
    //     }
    // }
    for (int i = 1, u = 1; i <= n; i++)
    {
        u = ch[u][s[i] - '0'];
        for (int j = 1, v = u; j <= i; j++)
        {
            while (len[fa[v]] >= i - j + 1) v = fa[v];
            hs[j][i] = v;
        }
    }
    for (int i = 1; i <= n; i++)
    {
        zu[i][0] = 0;
        for (int j = 1; j < i && j <= n - i + 1; j++)
        {
            if (hs[i - j][i - 1] == hs[i][i + j - 1])
            {
                zu[i][++zu[i][0]] = j;
            }
        }
    }
    ll ans = 0;
    for (int l = n; l; l--)
    {
        for (int i = 1; i + l - 1 <= n; i++)
        {
            // if (sm[hs[i][i + l - 1]])
            // {
            //     cerr << "! " << i << ' ' << i + l - 1 << endl;
            // }
            ans += sm[hs[i][i + l - 1]];
            if (i > l)
            {
                int j = i - l, u = hs[i - l][i - 1];
                while (zu[j][0] && zu[j][zu[j][0]] >= l) zu[j][0]--;
                sm[u] += zu[j][0];
            }
        }
        for (int i = 1; i + l - 1 <= n; i++) sm[hs[i][i + l - 1]] = 0;
    }
    printf("%lld\n", ans);
}

int main()
{
    int Tt; scanf("%d", &Tt); while (Tt--) solve();
    return 0;
}

Details

Tip: Click on the bar to expand more detailed information

Test #1:

score: 100
Accepted
time: 2ms
memory: 7640kb

input:

2
114514
0000000

output:

1
3

result:

ok 2 number(s): "1 3"

Test #2:

score: 0
Accepted
time: 521ms
memory: 198484kb

input:

11
79380
2483905227
37902399703986576270
39991723655814713848046032694137883815354365954917
5541883522667841718787744915558298207485830622522715211018760095628594390563630840464643840093757297
56530485554219245862513973750218715585679416120445975390556326891488719311495909340757506478400624741858999...

output:

0
0
0
2
4
20
119
113
1086
2128
15166

result:

ok 11 numbers

Test #3:

score: 0
Accepted
time: 4ms
memory: 14024kb

input:

50
11111111111111111111111111111111111111121111111111111111111111111111111111111112111111111121111111111211111121211121111111111111111111111111111211121111111111111111111111111111111111111111111111111112
111111111111111111111111111111111111111111111121111121111111111111111111111111111111111111111111...

output:

779344
799116
716078
723215
1197647
403357
652134
625671
414294
942493
390998
793444
612061
507395
473508
836065
461623
374925
539333
592574
676408
610940
463761
490048
995917
595830
424894
332669
596834
655095
521489
1032050
697420
752056
406316
360973
1180943
948628
478572
1026603
711224
429752
49...

result:

ok 50 numbers

Test #4:

score: 0
Accepted
time: 4ms
memory: 16312kb

input:

50
11211121122222111222111111222112111221112111121112221111111121211111212211212122112212221221112112221221112211211112121222112221211122112211112111112112211121222111222212211121111111112111112121111122
112112121211212111212221221222211211121212221111112122121211112221221121121112111221211112122121...

output:

7499
6375
7041
7889
6622
6804
8695
8795
7018
8387
8910
8019
8223
8820
7324
7144
8035
9941
7073
7373
7427
7280
6946
8204
7931
6769
7050
9268
7682
8232
7797
7356
7012
8967
7469
6869
11728
6562
7604
8840
7885
8658
7006
8156
10694
6716
6121
7499
7456
7981

result:

ok 50 numbers

Test #5:

score: 0
Accepted
time: 635ms
memory: 86320kb

input:

15
111111111111111111111111111111111111111111111111111111111111121111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111211111111111111111111111111111111111111111111111...

output:

6611556286
8447635347
4351265656
8244172287
6847075843
5064323828
5818821992
5187397748
6202849391
7100699750
8826693258
9304467838
9691754783
12524687288
10378182916

result:

ok 15 numbers

Test #6:

score: 0
Accepted
time: 649ms
memory: 85848kb

input:

15
111111111111111111111111111111111111111111111111111111121112111111111111111111111111211111112111111111111111111111111112112111111111211111111111111111121211111111111111111112121111211112112111111112111111111111111112111111111111111111111111111111111111111211111211211111111111111112211111111111111...

output:

99283290
121730268
95231372
139100190
109487920
93015077
138212377
180336129
94959502
88117283
81796472
100172151
133716692
92198870
119549081

result:

ok 15 numbers

Test #7:

score: -100
Time Limit Exceeded

input:

6
1111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111...

output:


result: