QOJ.ac

QOJ

IDProblemSubmitterResultTimeMemoryLanguageFile sizeSubmit timeJudge time
#771886#7876. Cyclic SubstringsfosovWA 86ms365508kbC++142.2kb2024-11-22 16:10:472024-11-22 16:10:48

Judging History

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

  • [2024-11-22 16:10:48]
  • 评测
  • 测评结果:WA
  • 用时:86ms
  • 内存:365508kb
  • [2024-11-22 16:10:47]
  • 提交

answer

#include <bits/stdc++.h>
using namespace std;

#define ll long long 
#define lll __int128
#define INF 0x3f3f3f3f
#define LNF 0x3f3f3f3f3f3f3f3fll
#define pii pair<int, int>
#define pll pair<ll, ll>
#define ld long double
#define fi first
#define se second
#define all(a) a.begin(), a.end()

#define N 200010

struct mint {
    static const int MOD = 998244353;
    ll v;
    mint() {};
    mint(ll v): v(v%MOD) {};

    mint operator+(mint x) {
        return v + x.v;
    }
    mint operator*(mint x) {
        return v * x.v;
    }
};

namespace PAM {
    static const int P = 3000010;
    int z, sz, last;
    int ch[P][26], len[P], fail[P];
    mint cnt[P];
    char s[P];

    int add_node(int l) {
        int cu = z ++;
        len[cu] = l;
        return cu;
    }

    int next(int x) {
        return s[sz-len[x]-1] == s[sz] ? x : next(fail[x]);
    }

    void init() {
        z = sz = 0;
        s[sz] = '$';
        memset(ch, 0, sizeof(ch));
        memset(len, 0, sizeof(len));
        memset(fail, 0, sizeof(fail));
        memset(cnt, 0, sizeof(cnt));
        last = add_node(0);
        fail[last] = add_node(-1);
    }

    void insert(char c, int flag) {
        s[++ sz] = c;
        int cur = next(last);
        if (!ch[cur][c-'0']) {
            int cu = add_node(len[cur] + 2);
            fail[cu] = ch[next(fail[cur])][c-'0'];
            ch[cur][c-'0'] = cu;
        }
        last = ch[cur][c-'0'];
        cnt[last] = cnt[last] + flag;
    }

    mint count(int n) {
        mint res = 0;
        for (int i = z-1; i >= 0; -- i) cnt[fail[i]] = cnt[fail[i]] + cnt[i];
        for (int i = 0; i < z; ++ i) {
            if (len[i] > 0 && len[i] <= n) {
                res = res + cnt[i] * cnt[i] * len[i];
            }
        }
        return res;
    }
};

int main() {
#ifdef TEST
    freopen("zz.in", "r+", stdin);
#endif
    ios::sync_with_stdio(0);
    cin.tie(0);
    cout.tie(0);

    int n; cin >> n;
    string s; cin >> s;
    s += s;
    PAM::init();
    for (int i = 0; i < s.length(); ++ i) {
        PAM::insert(s[i], i >= n);
    }
    cout << PAM::count(n).v << '\n';
} 

Details

Tip: Click on the bar to expand more detailed information

Test #1:

score: 100
Accepted
time: 11ms
memory: 355996kb

input:

5
01010

output:

39

result:

ok 1 number(s): "39"

Test #2:

score: 0
Accepted
time: 8ms
memory: 356432kb

input:

8
66776677

output:

192

result:

ok 1 number(s): "192"

Test #3:

score: 0
Accepted
time: 16ms
memory: 357016kb

input:

1
1

output:

1

result:

ok 1 number(s): "1"

Test #4:

score: 0
Accepted
time: 3ms
memory: 356524kb

input:

2
22

output:

12

result:

ok 1 number(s): "12"

Test #5:

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

input:

2
21

output:

2

result:

ok 1 number(s): "2"

Test #6:

score: 0
Accepted
time: 16ms
memory: 355264kb

input:

3
233

output:

10

result:

ok 1 number(s): "10"

Test #7:

score: 0
Accepted
time: 15ms
memory: 356100kb

input:

3
666

output:

54

result:

ok 1 number(s): "54"

Test #8:

score: 0
Accepted
time: 56ms
memory: 359660kb

input:

1000000
3333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333...

output:

496166704

result:

ok 1 number(s): "496166704"

Test #9:

score: -100
Wrong Answer
time: 86ms
memory: 365508kb

input:

3000000
2222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222...

output:

696639278

result:

wrong answer 1st numbers differ - expected: '890701718', found: '696639278'