QOJ.ac

QOJ

IDProblemSubmitterResultTimeMemoryLanguageFile sizeSubmit timeJudge time
#639093#7876. Cyclic Substringskinoko777AC ✓144ms647100kbC++233.0kb2024-10-13 17:53:082024-10-13 17:53:08

Judging History

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

  • [2024-10-13 17:53:08]
  • 评测
  • 测评结果:AC
  • 用时:144ms
  • 内存:647100kb
  • [2024-10-13 17:53:08]
  • 提交

answer

#include <algorithm>
#include <cstring>
#include <iostream>
#include <string>
using namespace std;
#define int long long
constexpr int MAXN = 6000000 + 5, mod = 998244353;
int n;
namespace pam {
int sz, tot, last, sz1;
int cnt[MAXN], ch[MAXN][10], len[MAXN], fail[MAXN];
char s[MAXN];
int cnt1[MAXN];

int node(int l) {  // 建立一个新节点,长度为 l
  sz++;
  memset(ch[sz], 0, sizeof(ch[sz]));
  len[sz] = l;
  fail[sz] = cnt[sz] = 0;
  return sz;
}

void clear() {  // 初始化
  sz = -1;
  last = 0;
  s[tot = 0] = '$';
  node(0);
  node(-1);
  fail[0] = 1;
}

int getfail(int x) {  // 找后缀回文
  while (s[tot - len[x] - 1] != s[tot]) x = fail[x];
  return x;
}

void insert(char c) {  // 建树
  s[++tot] = c;
  int now = getfail(last);
  if (!ch[now][c - '0']) {
    int x = node(len[now] + 2);
    fail[x] = ch[getfail(fail[now])][c - '0'];
    ch[now][c - '0'] = x;
  }
  last = ch[now][c - '0'];
  cnt[last]++;
}

void work1()
{
    for(int i = 2; i <= sz; i ++) cnt1[i] = cnt[i];
    for(int i = sz; i >= 2; i --) cnt1[fail[i]] += cnt1[i];
    sz1 = sz;
}

int work()
{
    // int ans = 0;
    // for(int i = sz; i >= 0; i --)
    // {
    //     cnt[fail[i]] += cnt[i];
    // }
    int ans = 0;
    for(int i = sz; i >= 2; i --)
    {
        cnt[fail[i]] += cnt[i];
        int c = cnt[i];
        if(i <= sz1) c -= cnt1[i];
        if(len[i] <= n) 
            ans = (ans + c * c % mod * len[i] % mod) % mod;
    }
    // for(int i = 1; i <= sz; i ++)
    // {
    //     if(len[i] == -1) continue;
    //     if(op == 2 && len[i] >= tot / 2) continue;
    //     cout << cnt[i] << ' ' << len[i] << endl;
    //     ans += 1ll * cnt[i] * cnt[i] % mod * len[i] % mod;
    //     ans %= mod;
    // }
    return ans;
}
}

string s;

signed main() {
    cin.tie(nullptr)->sync_with_stdio(false);
    pam::clear();
    cin >> n;
    cin >> s;
    pam::clear();
    for(int i = 0; i < s.size(); i ++)
        pam::insert(s[i]);
    pam::work1();
    for(int i = 0; i < s.size(); i ++)
        pam::insert(s[i]);
    cout << pam::work() << endl;
    
    // vector<pair<int, int>> ccnt;
    // for(int i = 2; i <= pam::sz; i ++)
    //     ccnt.push_back({pam :: cnt[i], pam :: len[i]});
    // for(auto [c, l] : ccnt)
    //     cout << c << ' ' << l << endl;
    // for(int i = 0; i < s.size(); i ++)
    //     pam::insert(s[i]);
    // int now2 = pam::work(2);
    // vector<pair<int, int>> ccnt2;
    // for(int i = 2; i <= pam::sz; i ++)
    // {
    //     if(pam::len[i] <= pam::tot / 2)
    //     ccnt2.push_back({pam :: cnt[i], pam :: len[i]});
    // }
    // for(auto [c, l] : ccnt2)
    // {
        
    // }
    // cout << now2 << endl;
    // cout << now2 - now1 << endl;
    // pam1::clear();
    // for(int i = 0; i < t.size(); i ++)
    //     pam1::insert(t[i]);
    // int now2 = pam1::work(2);
    // int now = ((now2 - now1) % mod + mod) % mod; 
    // cout << now << endl;
    return 0;
}

这程序好像有点Bug,我给组数据试试?

Details

Tip: Click on the bar to expand more detailed information

Test #1:

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

input:

5
01010

output:

39

result:

ok 1 number(s): "39"

Test #2:

score: 0
Accepted
time: 0ms
memory: 13856kb

input:

8
66776677

output:

192

result:

ok 1 number(s): "192"

Test #3:

score: 0
Accepted
time: 2ms
memory: 13860kb

input:

1
1

output:

1

result:

ok 1 number(s): "1"

Test #4:

score: 0
Accepted
time: 0ms
memory: 13904kb

input:

2
22

output:

12

result:

ok 1 number(s): "12"

Test #5:

score: 0
Accepted
time: 1ms
memory: 13928kb

input:

2
21

output:

2

result:

ok 1 number(s): "2"

Test #6:

score: 0
Accepted
time: 1ms
memory: 13860kb

input:

3
233

output:

10

result:

ok 1 number(s): "10"

Test #7:

score: 0
Accepted
time: 0ms
memory: 13856kb

input:

3
666

output:

54

result:

ok 1 number(s): "54"

Test #8:

score: 0
Accepted
time: 23ms
memory: 231108kb

input:

1000000
3333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333...

output:

496166704

result:

ok 1 number(s): "496166704"

Test #9:

score: 0
Accepted
time: 107ms
memory: 647100kb

input:

3000000
2222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222...

output:

890701718

result:

ok 1 number(s): "890701718"

Test #10:

score: 0
Accepted
time: 112ms
memory: 308940kb

input:

3000000
9999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999...

output:

224009870

result:

ok 1 number(s): "224009870"

Test #11:

score: 0
Accepted
time: 76ms
memory: 646344kb

input:

3000000
8989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989898989...

output:

51985943

result:

ok 1 number(s): "51985943"

Test #12:

score: 0
Accepted
time: 86ms
memory: 646908kb

input:

3000000
1911911911911911911911911911911911911911911911911911911911911911911911911911911911911911911911911911911911911911911911911911911911911911911911911911911911911911911911911911911911911911911911911911911911911911911911911911911911911911911911911911911911911911911911911911911911911911911911911911...

output:

355676465

result:

ok 1 number(s): "355676465"

Test #13:

score: 0
Accepted
time: 103ms
memory: 571628kb

input:

3000000
7777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777...

output:

788510374

result:

ok 1 number(s): "788510374"

Test #14:

score: 0
Accepted
time: 129ms
memory: 592204kb

input:

3000000
5555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555...

output:

691884476

result:

ok 1 number(s): "691884476"

Test #15:

score: 0
Accepted
time: 126ms
memory: 346104kb

input:

3000000
0990990909909909099090990990909909909099090990990909909099099090990990909909099099090990990909909099099090990909909909099099090990909909909099090990990909909909099090990990909909909099090990990909909099099090990990909909099099090990990909909099099090990909909909099099090990909909909099090990...

output:

701050848

result:

ok 1 number(s): "701050848"

Test #16:

score: 0
Accepted
time: 59ms
memory: 120492kb

input:

3000000
2772772727727727277272772772727727727277272772772727727277277272772772727727277277272772772727727277277272772727727727277277272772727727727277272772772727727727277272772772727727727277272772772727727277277272772772727727277277272772772727727277277272772727727727277277272772727727727277272772...

output:

486861605

result:

ok 1 number(s): "486861605"

Test #17:

score: 0
Accepted
time: 116ms
memory: 546268kb

input:

3000000
4554554545545545455454554554545545545455454554554545545455455454554554545545455455454554554545545455455454554545545545455455454554545545545455454554554545545545455454554554545545545455454554554545545455455454554554545545455455454554554545545455455454554545545545455455454554545545545455454554...

output:

450625621

result:

ok 1 number(s): "450625621"

Test #18:

score: 0
Accepted
time: 144ms
memory: 534180kb

input:

3000000
1181811811818118181181181811818118118181181181811818118118181181181811818118118181181811811818118118181181811811818118181181181811811818118181181181811811818118181181181811818118118181181181811818118118181181181811818118118181181811811818118118181181811811818118181181181811811818118181181181...

output:

649551870

result:

ok 1 number(s): "649551870"

Extra Test:

score: 0
Extra Test Passed