QOJ.ac

QOJ

ID题目提交者结果用时内存语言文件大小提交时间测评时间
#231681#858. GCD vs. XORTibrellaRE 1707ms90812kbC++142.1kb2023-10-29 15:25:432023-10-29 15:25:46

Judging History

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

  • [2023-10-29 15:25:46]
  • 评测
  • 测评结果:RE
  • 用时:1707ms
  • 内存:90812kb
  • [2023-10-29 15:25:43]
  • 提交

answer

#include <iostream>
#include <vector>
#include <algorithm>
#include <cmath>

#include <cstdio>

struct istream {
    static const size_t SIZE = 1<<18;
    char buf[SIZE], *cur, *end;

    istream() {
        cur = end = buf;
    }

    char get() {
        if (cur == end) {
            end = buf + fread(buf, 1, SIZE, stdin);
            if (end == cur) return EOF;
        }
        return *(cur++);
    }

    template<typename T>
    istream& operator>>(T& x) {
        x = 0;
        char c;
        do c = get(); while (c < 48 || c > 57);
        do {x = (x << 3) + (x << 1) + (c ^ 48); c = get();} while (c > 47 && c < 58);
        return *this;
    }
} cin;

using std::cout;

using i32 = int;
using i64 = long long;

static i32 gcd(i32 a, i32 b) {
    while (b) {
        a = a % b;
        std::swap(a, b);
    }
    return a;
}

#define V 2000001
#define N 2000001

std::vector<i32> ans[V];

i32 f[N], t[N];

void solve(const i32& tim) {
    i32 n;
    i64 res = 0;
    cin >> n;
    for (i32 i = 1; i <= n; ++ i) {
        i32 x;
        cin >> x;
        if (t[x] != tim) t[x] = tim, f[x] = 0;
        else res += f[x];
        for (const auto& v : ans[x]) {
            // cout<< v << ' ';
            if (t[v] != tim) t[v] = tim, f[v] = 0;
            ++f[v];
        }
        // cout<< '\n';
    }
    cout << res << '\n';
}

int main() {
    std::ios::sync_with_stdio(false);
    cout.tie(nullptr);

    for (i32 i = 2; i <= 1000000; ++ i) {
        ans[i].emplace_back(i ^ 1);
        for (i32 j = 2, lim = sqrt(i); j <= lim; ++ j) {
            if (i % j == 0) {
                if ((i ^ j) < V && gcd(i ^ j, i) == j) ans[i ^ j].emplace_back(i);
                if (i / j != j && (i ^ (i/j)) < V && gcd(i ^ (i/j), i) == (i/j)) 
                    ans[i ^ (i/j)].emplace_back(i); 
            }
        }
    }

    // for (i32 i = 1; i <= 10; ++ i) {
    //     for (const auto& x : ans[i]) cout << x << ' ';
    //     cout << '\n';
    // }

    i32 t;
    cin >> t;
    while (t--) solve(t);

    return 0;
}

详细

Test #1:

score: 100
Accepted
time: 1707ms
memory: 89488kb

input:

1
4
2 3 4 3

output:

2

result:

ok 1 number(s): "2"

Test #2:

score: 0
Accepted
time: 1700ms
memory: 90812kb

input:

20
43
128 66 452 384 400 441 232 203 228 33 284 156 128 190 197 292 388 31 179 343 147 206 450 284 180 73 273 130 168 250 405 203 235 340 309 28 267 395 152 191 295 463 344
54
48 7 12 37 49 24 5 18 15 37 26 57 53 59 22 10 2 16 36 52 64 1 56 42 38 46 53 7 2 8 60 38 54 11 19 50 20 61 6 50 27 5 26 3 4 ...

output:

9
54
13
7
8
34
47
11
1
102
6
5
37
1
3
8
8
348
15
0

result:

ok 20 numbers

Test #3:

score: -100
Runtime Error

input:

20
1318434
383714 853663 66866 511925 858736 184314 296349 849141 468962 414270 917939 220934 778184 984811 194692 105206 528188 310859 57152 790101 274637 529663 931099 79533 179471 539390 210762 400829 514992 127623 369248 168711 380204 767781 753089 645551 714964 101060 340524 937457 928656 65201...

output:


result: