QOJ.ac
QOJ
ID | Problem | Submitter | Result | Time | Memory | Language | File size | Submit time | Judge time |
---|---|---|---|---|---|---|---|---|---|
#683378 | #7679. Master of Both IV | Martian148 | WA | 40ms | 3552kb | C++20 | 1.6kb | 2024-10-27 20:37:30 | 2024-10-27 20:37:31 |
Judging History
answer
#include <bits/stdc++.h>
constexpr int TP = 30;
constexpr int TT = 998244353;
using ll = long long;
struct AS {
std::vector<int> p;
AS() : p(TP, 0) {}
void insert(int x, int &cnt) {
for (int i = TP - 1; i >= 0; i--) {
if (x >> i & 1) {
if (!p[i]) {p[i] = x; return ;}
}
x ^= p[i];
}
cnt += 1;
}
bool check (int x) {
for (int i = TP - 1; i >= 0; i--) {
if (x >> i & 1) x ^= p[i];
}
return x == 0;
}
};
void solve() {
int n; std::cin >> n;
std::vector<int> a(n + 1, 0), f(n + 1, 0);
f[0] = 1;
for (int i = 1; i <= n; i++) f[i] = 2 * f[i - 1] % TT;
for (int i = 1; i <= n; i++) std::cin >> a[i];
int M = *std::max_element(a.begin(), a.end());
std::vector<int> b(M + 1, 0);
std::vector<std::vector<int>> g(M + 1);
for (int i = 1; i <= n; i++) b[a[i]] += 1;
for (int i = 1; i <= M; i++)
for (int j = 0; j <= M; j += i)
g[j].push_back(i);
int ans = 0;
for (int i = 0; i <= M; i++) {
AS as;
int now = 0;
for (auto d : g[i]) {
if (b[d] == 0) continue;
now += b[d] - 1;
as.insert(d, now);
}
if (as.check(i)) {
ans = (ans + f[now]) % TT;
}
}
std::cout << ans - 1 << '\n';
}
int main() {
std::ios::sync_with_stdio(false);
std::cin.tie(0); std::cout.tie(0);
int T; std::cin >> T;
while (T--) solve();
return 0;
}
Details
Tip: Click on the bar to expand more detailed information
Test #1:
score: 100
Accepted
time: 0ms
memory: 3544kb
input:
2 3 1 2 3 5 3 3 5 1 1
output:
4 11
result:
ok 2 number(s): "4 11"
Test #2:
score: -100
Wrong Answer
time: 40ms
memory: 3552kb
input:
40000 5 4 2 5 5 5 5 5 5 5 5 4 5 1 4 4 4 2 5 2 5 2 4 1 5 3 2 4 5 3 5 1 5 5 3 4 5 5 5 5 4 3 5 4 3 3 5 1 5 4 5 5 2 1 5 2 5 4 2 5 5 3 4 3 4 3 5 5 3 5 1 3 5 5 1 2 4 4 5 4 2 5 1 5 5 5 4 2 5 4 5 5 2 5 2 4 5 1 4 5 4 5 5 4 2 3 2 3 5 1 4 1 3 5 5 1 1 2 1 5 5 5 2 5 1 3 5 3 1 2 5 3 5 5 5 1 1 5 5 2 2 2 1 3 5 3 1 ...
output:
9 16 9 9 8 8 13 8 8 9 13 8 8 8 8 9 12 9 11 15 8 8 17 13 8 11 8 8 8 13 15 9 9 8 8 8 11 9 11 13 15 13 17 9 8 8 8 13 11 8 13 11 8 8 11 15 9 8 9 8 8 15 11 8 17 9 15 8 8 8 12 9 9 11 8 13 9 8 15 8 8 9 8 8 12 15 8 11 13 8 9 11 8 19 11 13 19 17 13 15 8 8 12 9 12 9 13 15 17 9 9 17 9 11 9 9 11 9 9 11 8 9 9 13...
result:
wrong answer 7th numbers differ - expected: '9', found: '13'