QOJ.ac
QOJ
ID | Problem | Submitter | Result | Time | Memory | Language | File size | Submit time | Judge time |
---|---|---|---|---|---|---|---|---|---|
#771873 | #7876. Cyclic Substrings | fosov | WA | 101ms | 352220kb | C++14 | 2.0kb | 2024-11-22 16:08:09 | 2024-11-22 16:08:09 |
Judging History
answer
#include <bits/stdc++.h>
using namespace std;
#define ll long long
#define lll __int128
#define INF 0x3f3f3f3f
#define LNF 0x3f3f3f3f3f3f3f3fll
#define MOD 998244353
#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
namespace PAM {
static const int P = 3000010;
int z, sz, last;
int ch[P][26], len[P], fail[P], 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] += flag;
}
ll count(int n) {
ll res = 0;
for (int i = z-1; i >= 0; -- i) cnt[fail[i]] = ((ll) cnt[fail[i]] + cnt[i]) % MOD;
for (int i = 0; i < z; ++ i) {
if (len[i] > 0 && len[i] <= n) {
res += (ll) cnt[i] * cnt[i] % MOD * len[i] % MOD;
res %= MOD;
}
}
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) << '\n';
}
Details
Tip: Click on the bar to expand more detailed information
Test #1:
score: 100
Accepted
time: 3ms
memory: 343504kb
input:
5 01010
output:
39
result:
ok 1 number(s): "39"
Test #2:
score: 0
Accepted
time: 8ms
memory: 343632kb
input:
8 66776677
output:
192
result:
ok 1 number(s): "192"
Test #3:
score: 0
Accepted
time: 0ms
memory: 343436kb
input:
1 1
output:
1
result:
ok 1 number(s): "1"
Test #4:
score: 0
Accepted
time: 4ms
memory: 343580kb
input:
2 22
output:
12
result:
ok 1 number(s): "12"
Test #5:
score: 0
Accepted
time: 11ms
memory: 343400kb
input:
2 21
output:
2
result:
ok 1 number(s): "2"
Test #6:
score: 0
Accepted
time: 3ms
memory: 344500kb
input:
3 233
output:
10
result:
ok 1 number(s): "10"
Test #7:
score: 0
Accepted
time: 12ms
memory: 344536kb
input:
3 666
output:
54
result:
ok 1 number(s): "54"
Test #8:
score: 0
Accepted
time: 44ms
memory: 346860kb
input:
1000000 3333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333...
output:
496166704
result:
ok 1 number(s): "496166704"
Test #9:
score: -100
Wrong Answer
time: 101ms
memory: 352220kb
input:
3000000 2222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222...
output:
829660486
result:
wrong answer 1st numbers differ - expected: '890701718', found: '829660486'