QOJ.ac
QOJ
ID | Problem | Submitter | Result | Time | Memory | Language | File size | Submit time | Judge time |
---|---|---|---|---|---|---|---|---|---|
#763251 | #8527. Power Divisions | IllusionaryDominance | WA | 12ms | 24388kb | C++20 | 2.4kb | 2024-11-19 19:11:21 | 2024-11-19 19:11:22 |
Judging History
answer
#include <bits/stdc++.h>
using namespace std;
typedef long long ll;
const int MAX_N = 300000 + 5;
const int MAX_M = 1 << 20;
const ll P = 3270674594228402513ll;
const int MOD = 998244353;
mt19937_64 rnd64(chrono::steady_clock::now().time_since_epoch().count());
ll coef[MAX_M], sumc[MAX_M];
inline ll add(ll a, ll b) {return a + b < P ? a + b : a + b - P;}
void init() {
uniform_int_distribution <ll> rndP(0, P - 1);
for (int i = 0; i < MAX_M; i ++) {
coef[i] = rndP(rnd64);
sumc[i] = add(i > 0 ? sumc[i - 1] : 0ll, coef[i]);
}
}
int N, a[MAX_N], f[MAX_N];
vector <int> lp[MAX_N];
void solve(int l, int r) {
if (l == r) {
lp[l].emplace_back(l);
return ;
}
int mid = l + r >> 1;
solve(l, mid); solve(mid + 1, r);
set <int> s;
map <int, int> pre, suf;
ll hash = 0;
auto ins = [&](int x) -> void {
while (s.count(x)) {
hash = add(hash, P - coef[x]);
s.erase(x); x ++;
}
s.insert(x);
hash = add(hash, coef[x]);
};
for (int i = mid; i >= l; i --) {
ins(a[i]);
pre[hash] = i;
}
s.clear(); hash = 0;
for (int i = mid + 1; i <= r; i ++) {
ins(a[i]);
suf[hash] = i;
int lowbit = *s.begin(), highbit = *s.rbegin();
ll tmp = add(sumc[highbit], P - sumc[lowbit]);
tmp = add(tmp, P - hash);
tmp = add(tmp, coef[lowbit]);
tmp = add(tmp, coef[lowbit]);
if (pre.count(tmp)) {
lp[i].emplace_back(pre[tmp]);
}
}
s.clear(); hash = 0;
for (int i = mid; i >= l; i --) {
ins(a[i]);
int lowbit = *s.begin(), highbit = *s.rbegin();
ll tmp = add(sumc[highbit], P - sumc[lowbit]);
tmp = add(tmp, P - hash);
tmp = add(tmp, coef[lowbit]);
tmp = add(tmp, coef[lowbit]);
if (tmp != hash && suf.count(tmp)) {
lp[suf[tmp]].emplace_back(i);
}
}
}
int main() {
init();
ios::sync_with_stdio(false);
cin.tie(0); cout.tie(0);
cin >> N;
for (int i = 1; i <= N; i ++) {
cin >> a[i];
}
solve(1, N);
f[0] = 1;
for (int i = 1; i <= N; i ++) {
for (auto j : lp[i]) {
f[i] += f[j - 1];
(f[i] >= MOD && (f[i] -= MOD));
}
}
cout << f[N] << '\n';
return 0;
}
Details
Tip: Click on the bar to expand more detailed information
Test #1:
score: 100
Accepted
time: 8ms
memory: 22888kb
input:
5 2 0 0 1 1
output:
6
result:
ok 1 number(s): "6"
Test #2:
score: 0
Accepted
time: 4ms
memory: 24300kb
input:
1 0
output:
1
result:
ok 1 number(s): "1"
Test #3:
score: 0
Accepted
time: 4ms
memory: 24328kb
input:
2 1 1
output:
2
result:
ok 1 number(s): "2"
Test #4:
score: 0
Accepted
time: 8ms
memory: 23288kb
input:
3 2 1 1
output:
3
result:
ok 1 number(s): "3"
Test #5:
score: 0
Accepted
time: 4ms
memory: 23520kb
input:
4 3 2 2 3
output:
4
result:
ok 1 number(s): "4"
Test #6:
score: 0
Accepted
time: 9ms
memory: 22792kb
input:
5 3 4 4 2 4
output:
2
result:
ok 1 number(s): "2"
Test #7:
score: 0
Accepted
time: 7ms
memory: 22580kb
input:
7 3 4 3 5 6 3 4
output:
6
result:
ok 1 number(s): "6"
Test #8:
score: 0
Accepted
time: 8ms
memory: 23980kb
input:
10 8 6 5 6 7 8 6 8 9 9
output:
4
result:
ok 1 number(s): "4"
Test #9:
score: 0
Accepted
time: 12ms
memory: 22632kb
input:
96 5 1 0 2 5 5 2 4 2 4 4 2 3 4 0 2 1 4 3 1 2 0 2 2 3 2 4 5 3 5 2 0 2 2 5 3 0 4 5 3 5 4 4 3 1 2 0 5 4 5 0 2 3 2 4 0 0 4 2 0 2 5 3 3 1 5 5 1 1 1 0 5 0 3 0 2 1 1 0 5 0 3 3 4 4 5 3 0 2 2 0 5 4 5 0 5
output:
11332014
result:
ok 1 number(s): "11332014"
Test #10:
score: -100
Wrong Answer
time: 6ms
memory: 24388kb
input:
480 2 0 4 4 1 0 0 3 1 1 4 2 5 5 4 2 1 2 4 4 1 3 4 3 0 5 2 0 2 5 1 0 5 0 0 5 5 0 2 5 2 2 3 1 4 3 5 4 5 2 4 4 4 4 1 4 0 3 4 3 4 1 0 4 3 4 5 4 3 5 0 2 2 0 1 5 4 4 2 0 3 3 3 4 3 0 5 5 3 1 5 1 0 1 0 4 3 0 5 1 4 1 4 3 0 1 3 5 0 3 3 1 0 4 1 1 2 0 1 2 0 3 5 2 0 5 5 5 5 3 5 1 0 2 5 2 2 0 2 0 2 3 5 1 2 1 5 4 ...
output:
1016391
result:
wrong answer 1st numbers differ - expected: '506782981', found: '1016391'