QOJ.ac
QOJ
ID | 题目 | 提交者 | 结果 | 用时 | 内存 | 语言 | 文件大小 | 提交时间 | 测评时间 |
---|---|---|---|---|---|---|---|---|---|
#241139 | #6567. Repetitive String Invention | MovingUp# | WA | 90ms | 9300kb | C++14 | 2.2kb | 2023-11-05 23:31:02 | 2023-11-05 23:31:02 |
Judging History
answer
#include <algorithm>
#include <iostream>
#include <unordered_map>
#include <vector>
#include <bits/extc++.h>
using namespace std;
using namespace __gnu_pbds;
int fastPow(int x, int pw, int mod) {
if (pw == 0)
return 1;
else if (pw % 2 == 0) {
int tmp = fastPow(x, pw / 2, mod);
return ((int64_t)tmp * tmp) % mod;
} else
return ((int64_t)x * fastPow(x, pw - 1, mod)) % mod;
}
struct rolling_hash {
static const int BASE = 43;
static const int MOD = 1e9 + 123;
vector<int> multInvs;
vector<int> sums;
rolling_hash(const std::string &s) {
int n = s.size();
int currPw = 1;
sums.resize(n);
for (int i = 0; i < n; i++) {
sums[i] = ((int64_t)(s[i] - 'a' + 1) * currPw) % MOD;
if (i != 0)
sums[i] = (sums[i] + sums[i - 1]) % MOD;
multInvs.push_back(fastPow(currPw, MOD - 2, MOD));
currPw = ((int64_t)currPw * BASE) % MOD;
}
}
int getSubhash(int l, int r) {
int h = sums[r] - (l == 0 ? 0 : sums[l - 1]);
if (h < 0)
h += MOD;
return ((int64_t)h * multInvs[l]) % MOD;
}
};
int64_t count(const string &s, bool countZeroGreen) {
rolling_hash rh = rolling_hash(s);
int n = s.size();
int64_t ans = 0;
gp_hash_table<int, int> cntWithHash;
for (int lGreen = 0; lGreen < n; lGreen++) {
for (int lRed = lGreen; lRed < n; lRed++) {
for (int rRed = lRed; rRed < n; rRed++) {
int lenGreen = lRed - lGreen;
if (lenGreen != 0 && rRed + lenGreen < n &&
rh.getSubhash(lGreen, lRed - 1) !=
rh.getSubhash(rRed + 1, rRed + lenGreen))
continue;
if (rRed + lenGreen >= n)
continue;
if (lenGreen == 0 && !countZeroGreen)
continue;
ans += cntWithHash[rh.getSubhash(lRed, rRed)];
}
}
for (int i = 0; i <= lGreen; i++) {
cntWithHash[rh.getSubhash(i, lGreen)]++;
}
}
return ans;
}
int main() {
ios_base::sync_with_stdio(false);
cin.tie(nullptr);
string s;
cin >> s;
int64_t ans = count(s, true);
reverse(s.begin(), s.end());
ans += count(s, false);
cout << ans << endl;
}
詳細信息
Test #1:
score: 100
Accepted
time: 0ms
memory: 3596kb
input:
aaaa
output:
9
result:
ok single line: '9'
Test #2:
score: 0
Accepted
time: 0ms
memory: 3788kb
input:
axabxbcxcdxd
output:
22
result:
ok single line: '22'
Test #3:
score: 0
Accepted
time: 90ms
memory: 3844kb
input:
xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx...
output:
536006700
result:
ok single line: '536006700'
Test #4:
score: 0
Accepted
time: 72ms
memory: 3672kb
input:
abababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababab...
output:
136016600
result:
ok single line: '136016600'
Test #5:
score: 0
Accepted
time: 0ms
memory: 3780kb
input:
a
output:
0
result:
ok single line: '0'
Test #6:
score: 0
Accepted
time: 0ms
memory: 3536kb
input:
ab
output:
0
result:
ok single line: '0'
Test #7:
score: 0
Accepted
time: 0ms
memory: 3596kb
input:
aa
output:
1
result:
ok single line: '1'
Test #8:
score: -100
Wrong Answer
time: 62ms
memory: 9300kb
input:
bbbbbrrrrbrbrrbrbrbrbbrrbbbbrrbrrbrbrbrrrrrbbbrrbrrbbrrrbbbbbrrrrbbrbbrrrrrbbrrrbbbbbrbbrbbbrbrrbrrrrrrrrbbrbrbbrrrrrrbbbbbrbrrrrbrrbbrbrrrrrbrbrbbrbrrbrrrrbrbbrbrrbrrbbbbrrrrrbrbbrbbrrrrrbrbrbrbbbrrrrrrrbbbbbbrrbrbrrrrrbbbrbrrrrbbbbrrbrrbbbbbbbrbbbbrrrbrbbbrrrrrrbbbbbrbrrbbbbrbrbrrbbrrrbbbrbbbrbbrr...
output:
209020
result:
wrong answer 1st lines differ - expected: '209015', found: '209020'