QOJ.ac

QOJ

IDProblemSubmitterResultTimeMemoryLanguageFile sizeSubmit timeJudge time
#597640#9176. Non-Interactive NimLeoGWA 55ms3832kbC++202.7kb2024-09-28 18:16:002024-09-28 18:16:00

Judging History

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

  • [2024-09-28 18:16:00]
  • 评测
  • 测评结果:WA
  • 用时:55ms
  • 内存:3832kb
  • [2024-09-28 18:16:00]
  • 提交

answer

#include<bits/stdc++.h>
#define ll    long long

template<typename T, typename = void>
struct is_printable : std::false_type {};

template<typename T>
struct is_printable<T, std::void_t<decltype(std::declval<std::ostream&>() << std::declval<T>())>> : std::true_type {};
template <typename T>
void print(const std::pair<T, T>& pair) {
    std::cout << "(" << pair.first << ", " << pair.second << ")";
}

// General print function
template <typename T>
void print(const T& val) {
    std::cout << val;
}

// Print function for std::vector
template <typename T>
void print(const std::vector<T>& vec) {
    std::cout << '[';
    int n = vec.size();
    for (int i = 0; i < n; i++) {
        print(vec[i]);
        if (i < n - 1) {
            std::cout << ",";
        }
    }
    std::cout << ']' << '\n';
}

// Variadic template print function
template<typename T, typename... Args>
void print(const T& t, const Args&... args) {
    print(t);
    std::cout << (is_printable<T>::value ? ' ' : '\0');
    print(args...);
    if (sizeof...(args) == 1 && is_printable<T>::value) std::cout << '\n';

}

inline unsigned count_bits(uint64_t v) {
  v = (v & 0x5555555555555555) + ((v >> 1) & 0x5555555555555555);
  v = (v & 0x3333333333333333) + ((v >> 2) & 0x3333333333333333);
  v = (v & 0x0f0f0f0f0f0f0f0f) + ((v >> 4) & 0x0f0f0f0f0f0f0f0f);
  v = (v & 0x00ff00ff00ff00ff) + ((v >> 8) & 0x00ff00ff00ff00ff);
  v = (v & 0x0000ffff0000ffff) + ((v >> 16) & 0x0000ffff0000ffff);
  v = (v & 0x00000000ffffffff) + ((v >> 32) & 0x00000000ffffffff);
  return v;
}

void solve(){
    int n;
    std::cin >> n;
    std::vector<ll> a(n), tmp;
    ll sum = 0;
    for (int i = 0; i < n; i++) {
        std::cin >> a[i];
        sum += count_bits(a[i]);
    }
    std::vector<std::pair<ll, ll>> ans;
    for (ll d = 60; d >= 0; d--) {
        tmp.clear();
        for (int i = 0; i < n; i++) {
            if ((a[i] >> d) & 1) {
                tmp.push_back(i);
            }
        }
        if (tmp.size() == 2) {
            ans.push_back({tmp[0] + 1, a[tmp[0]]});
            a[tmp[1]] ^= a[tmp[0]];
            a[tmp[0]] = 0;
        }
        else if (tmp.size() >= 4) break;
    }
    if (ans.empty()) {
        std::cout << "-1\n";
    }
    else {
        std::cout << ans.size() << std::endl;
        for (auto& [x, y] : ans) {
            std::cout << x << " " << y << "\n";
        }
        if (std::any_of(a.begin(), a.end(), [&](int i){return a[i];})) {
            std::cout << "-1\n";
        }
    }


    

}
int main(){
    std::ios::sync_with_stdio(false);
    std::cin.tie(nullptr);
    int t = 1;
    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: 3624kb

input:

2
4
4 2 7 1
4
1 1 1 1

output:

3
1 4
2 2
3 1
-1

result:

ok OK 1 yes 1 no (2 test cases)

Test #2:

score: 0
Accepted
time: 31ms
memory: 3624kb

input:

50000
2
3 3
2
2 2
2
3 3
2
2 2
2
3 3
2
3 3
2
1 1
2
1 1
2
1 1
2
2 2
2
2 2
2
3 3
2
2 2
2
1 1
2
3 3
2
1 1
2
1 1
2
1 1
2
3 3
2
1 1
2
1 1
2
3 3
2
2 2
2
3 3
2
3 3
2
2 2
2
1 1
2
3 3
2
2 2
2
2 2
2
3 3
2
3 3
2
1 1
2
1 1
2
1 1
2
3 3
2
3 3
2
1 1
2
1 1
2
3 3
2
2 2
2
2 2
2
2 2
2
1 1
2
1 1
2
2 2
2
2 2
2
1 1
2
3 3
...

output:

1
1 3
1
1 2
1
1 3
1
1 2
1
1 3
1
1 3
1
1 1
1
1 1
1
1 1
1
1 2
1
1 2
1
1 3
1
1 2
1
1 1
1
1 3
1
1 1
1
1 1
1
1 1
1
1 3
1
1 1
1
1 1
1
1 3
1
1 2
1
1 3
1
1 3
1
1 2
1
1 1
1
1 3
1
1 2
1
1 2
1
1 3
1
1 3
1
1 1
1
1 1
1
1 1
1
1 3
1
1 3
1
1 1
1
1 1
1
1 3
1
1 2
1
1 2
1
1 2
1
1 1
1
1 1
1
1 2
1
1 2
1
1 1
1
1 3
1
1 3
...

result:

ok OK 50000 yes 0 no (50000 test cases)

Test #3:

score: 0
Accepted
time: 55ms
memory: 3820kb

input:

50000
2
89846347117873058 89846347117873058
2
416235892302498917 416235892302498917
2
332154513003612985 332154513003612985
2
43960216631774959 43960216631774959
2
353215896487285554 353215896487285554
2
38296945667390613 38296945667390613
2
209150071115726640 209150071115726640
2
48610805835417777 ...

output:

1
1 89846347117873058
1
1 416235892302498917
1
1 332154513003612985
1
1 43960216631774959
1
1 353215896487285554
1
1 38296945667390613
1
1 209150071115726640
1
1 48610805835417777
1
1 211544111448330513
1
1 25910837432700249
1
1 332285940128117259
1
1 350363936612994860
1
1 243778347549648401
1
1 21...

result:

ok OK 50000 yes 0 no (50000 test cases)

Test #4:

score: 0
Accepted
time: 27ms
memory: 3560kb

input:

33333
3
1 3 2
3
2 3 1
2
1 1
3
1 2 3
3
3 2 1
3
1 2 3
2
1 1
2
3 3
2
3 3
3
1 2 3
3
1 3 2
3
3 2 1
2
2 2
3
3 2 1
2
3 3
3
3 1 2
2
1 1
3
1 2 3
3
1 3 2
3
2 3 1
3
1 3 2
3
1 2 3
3
1 2 3
3
3 1 2
3
2 3 1
3
1 3 2
3
1 3 2
2
1 1
2
3 3
3
3 2 1
2
3 3
3
1 3 2
3
2 3 1
3
2 3 1
3
1 3 2
3
2 3 1
3
2 3 1
3
3 2 1
2
1 1
3
2 ...

output:

2
2 3
1 1
2
1 2
2 1
1
1 1
2
2 2
1 1
2
1 3
2 1
2
2 2
1 1
1
1 1
1
1 3
1
1 3
2
2 2
1 1
2
2 3
1 1
2
1 3
2 1
1
1 2
2
1 3
2 1
1
1 3
2
1 3
2 1
1
1 1
2
2 2
1 1
2
2 3
1 1
2
1 2
2 1
2
2 3
1 1
2
2 2
1 1
2
2 2
1 1
2
1 3
2 1
2
1 2
2 1
2
2 3
1 1
2
2 3
1 1
1
1 1
1
1 3
2
1 3
2 1
1
1 3
2
2 3
1 1
2
1 2
2 1
2
1 2
2 1
...

result:

ok OK 33333 yes 0 no (33333 test cases)

Test #5:

score: 0
Accepted
time: 20ms
memory: 3600kb

input:

33333
3
1 7 6
3
5 1 4
3
7 3 4
3
6 4 2
3
5 3 6
3
5 3 6
3
7 4 3
3
1 2 3
3
4 3 7
3
2 4 6
3
1 6 7
3
4 5 1
3
1 5 4
2
4 4
2
6 6
3
4 7 3
3
4 2 6
3
1 3 2
3
3 4 7
2
2 2
3
7 3 4
3
2 7 5
3
7 6 1
3
7 3 4
3
4 3 7
3
2 4 6
3
7 1 6
3
3 1 2
3
5 3 6
3
2 6 4
3
6 1 7
3
1 2 3
3
2 1 3
3
5 2 7
3
2 4 6
3
6 3 5
3
5 7 2
2
5 ...

output:

2
2 7
1 1
2
1 5
2 1
2
1 7
2 3
2
1 6
2 2
2
1 5
2 3
2
1 5
2 3
2
1 7
2 3
2
2 2
1 1
2
1 4
2 3
2
2 4
1 2
2
2 6
1 1
2
1 4
2 1
2
2 5
1 1
1
1 4
1
1 6
2
1 4
2 3
2
1 4
2 2
2
2 3
1 1
2
2 4
1 3
1
1 2
2
1 7
2 3
2
2 7
1 2
2
1 7
2 1
2
1 7
2 3
2
1 4
2 3
2
2 4
1 2
2
1 7
2 1
2
1 3
2 1
2
1 5
2 3
2
2 6
1 2
2
1 6
2 1
2
...

result:

ok OK 33333 yes 0 no (33333 test cases)

Test #6:

score: 0
Accepted
time: 31ms
memory: 3624kb

input:

33333
3
1 2 3
3
3 6 5
3
2 6 4
3
7 5 2
3
6 1 7
2
14 14
3
4 1 5
3
9 4 13
3
3 12 15
2
10 10
3
1 14 15
3
2 1 3
3
12 11 7
3
14 3 13
3
5 14 11
3
10 2 8
3
4 10 14
3
9 5 12
3
4 5 1
3
14 3 13
2
14 14
3
8 3 11
3
5 6 3
3
5 4 1
2
6 6
3
10 1 11
3
12 10 6
3
9 10 3
3
11 8 3
3
6 14 8
3
6 5 3
3
9 13 4
3
15 12 3
3
11...

output:

2
2 2
1 1
2
2 6
1 3
2
2 6
1 2
2
1 7
2 2
2
1 6
2 1
1
1 14
2
1 4
2 1
2
1 9
2 4
2
2 12
1 3
1
1 10
2
2 14
1 1
2
1 2
2 1
2
1 12
2 7
2
1 14
2 3
2
2 14
1 5
2
1 10
2 2
2
2 10
1 4
2
1 9
2 5
2
1 4
2 1
2
1 14
2 3
1
1 14
2
1 8
2 3
2
1 5
2 3
2
1 5
2 1
1
1 6
2
1 10
2 1
2
1 12
2 6
2
1 9
2 3
2
1 11
2 3
2
2 14
1 6
2...

result:

ok OK 33333 yes 0 no (33333 test cases)

Test #7:

score: 0
Accepted
time: 47ms
memory: 3832kb

input:

33333
3
18 23 5
3
25 19 10
3
17 9 24
3
11 5 14
3
28 10 22
3
23 2 21
3
17 13 28
3
1 24 25
2
29 29
3
8 7 15
3
21 9 28
3
2 28 30
3
31 6 25
3
13 30 19
3
22 6 16
3
1 22 23
3
7 2 5
3
1 15 14
3
27 24 3
3
2 18 16
3
3 20 23
3
21 30 11
3
28 26 6
3
26 22 12
3
4 21 17
3
12 23 27
3
2 27 25
3
16 1 17
3
3 19 16
3
...

output:

2
1 18
2 5
2
1 25
2 10
2
1 17
2 9
2
1 11
2 5
2
1 28
2 10
2
1 23
2 2
2
1 17
2 13
2
2 24
1 1
1
1 29
2
1 8
2 7
2
1 21
2 9
2
2 28
1 2
2
1 31
2 6
2
2 30
1 13
2
1 22
2 6
2
2 22
1 1
2
1 7
2 2
2
2 15
1 1
2
1 27
2 3
2
2 18
1 2
2
2 20
1 3
2
1 21
2 11
2
1 28
2 6
2
1 26
2 12
2
2 21
1 4
2
2 23
1 12
2
2 27
1 2
2
...

result:

ok OK 33333 yes 0 no (33333 test cases)

Test #8:

score: 0
Accepted
time: 52ms
memory: 3512kb

input:

33333
3
75939333264163319 70286858371473560 140878147161481583
3
279663769504813403 468263081333160675 404772552081894328
3
89355125865512126 7804515715434520 82980318957417638
3
295120670202585395 334743633442856703 53274775335976908
3
166213426772161350 398865696845176129 560570643782577671
3
9560...

output:

2
1 75939333264163319
2 70286858371473560
2
2 468263081333160675
1 279663769504813403
2
1 89355125865512126
2 7804515715434520
2
1 295120670202585395
2 53274775335976908
2
2 398865696845176129
1 166213426772161350
2
2 209231436614970907
1 95605788062019993
2
2 100618185085847630
1 68154332108467375
...

result:

ok OK 33333 yes 0 no (33333 test cases)

Test #9:

score: 0
Accepted
time: 19ms
memory: 3620kb

input:

25000
4
1 1 3 3
4
2 2 1 1
4
3 2 2 3
4
1 3 1 3
3
2 1 3
3
3 2 1
4
3 2 2 3
4
2 3 2 3
3
3 2 1
4
3 3 1 1
3
2 1 3
3
3 1 2
4
3 2 3 2
4
2 2 1 1
4
1 3 1 3
4
2 1 1 2
4
1 3 1 3
3
2 3 1
4
3 3 1 1
4
2 3 2 3
3
3 2 1
4
3 3 1 1
3
2 3 1
3
1 2 3
3
1 2 3
3
3 1 2
4
1 3 1 3
4
3 1 1 3
4
2 2 3 3
3
3 2 1
4
2 2 2 2
3
1 3 2
...

output:

2
3 3
1 1
2
1 2
3 1
-1
2
2 3
1 1
2
1 2
2 1
2
1 3
2 1
-1
-1
2
1 3
2 1
2
1 3
3 1
2
1 2
2 1
2
1 3
2 1
-1
2
1 2
3 1
2
2 3
1 1
2
1 2
2 1
2
2 3
1 1
2
1 2
2 1
2
1 3
3 1
-1
2
1 3
2 1
2
1 3
3 1
2
1 2
2 1
2
2 2
1 1
2
2 2
1 1
2
1 3
2 1
2
2 3
1 1
2
1 3
2 1
-1
2
1 3
2 1
-1
2
2 3
1 1
2
2 3
1 1
-1
2
2 3
1 1
2
2 2
...

result:

ok OK 16671 yes 8329 no (25000 test cases)

Test #10:

score: 0
Accepted
time: 28ms
memory: 3632kb

input:

25000
4
7 3 6 2
4
4 4 6 6
4
7 6 5 4
4
2 5 5 2
4
2 5 4 3
4
4 4 4 4
4
3 1 5 7
4
2 7 4 1
4
3 7 3 7
3
3 5 6
4
3 1 1 3
4
5 7 4 6
4
3 2 5 4
4
6 6 4 4
4
2 1 6 5
4
5 4 6 7
4
2 3 3 2
4
4 3 4 3
4
4 1 7 2
4
2 7 2 7
4
1 7 7 1
4
3 6 3 6
4
6 2 3 7
4
7 4 2 1
4
7 7 4 4
3
6 5 3
4
3 6 3 6
4
7 3 7 3
4
2 6 5 1
4
2 6 7 ...

output:

3
1 7
2 3
3 1
-1
-1
2
2 5
1 2
3
2 5
1 2
3 1
-1
3
3 5
1 3
2 1
3
2 7
1 2
3 1
2
2 7
1 3
2
2 5
1 3
2
1 3
2 1
-1
3
3 5
1 3
2 1
-1
3
3 6
1 2
2 1
-1
-1
2
1 4
2 3
3
1 4
3 3
2 1
2
2 7
1 2
2
2 7
1 1
2
2 6
1 3
3
1 6
2 2
3 1
3
1 7
2 3
3 1
-1
2
1 6
2 3
2
2 6
1 3
2
1 7
2 3
3
2 6
1 2
3 1
3
2 6
1 2
3 1
3
1 4
2 3
3 ...

result:

ok OK 19664 yes 5336 no (25000 test cases)

Test #11:

score: 0
Accepted
time: 30ms
memory: 3560kb

input:

25000
4
5 14 14 5
4
9 7 12 2
4
8 13 7 2
4
15 13 7 5
4
2 7 2 7
4
10 5 9 6
4
10 9 14 13
4
15 14 3 2
4
11 8 8 11
4
5 12 7 14
4
12 15 15 12
4
4 11 7 8
4
7 1 15 9
4
13 2 9 6
4
13 13 2 2
4
5 11 5 11
4
15 5 11 1
4
3 8 7 12
4
7 12 8 3
4
5 11 8 6
4
14 9 9 14
4
7 1 13 11
4
13 6 10 1
4
8 2 15 5
4
8 7 11 4
4
7 ...

output:

2
2 14
1 5
3
1 9
2 7
3 2
3
1 8
2 5
3 2
3
1 15
3 7
2 2
2
2 7
1 2
3
1 10
2 5
3 3
-1
3
1 15
3 3
2 1
-1
3
2 12
1 5
3 2
-1
3
2 11
1 4
3 3
3
3 15
1 7
2 1
3
1 13
3 4
2 2
2
1 13
3 2
2
2 11
1 5
3
1 15
2 5
3 1
3
2 8
3 7
1 3
3
2 12
1 7
3 3
3
2 11
1 5
3 3
-1
3
3 13
1 7
2 1
3
1 13
2 6
3 1
3
1 8
3 7
2 2
3
1 8
2 7...

result:

ok OK 20719 yes 4281 no (25000 test cases)

Test #12:

score: 0
Accepted
time: 34ms
memory: 3660kb

input:

25000
4
22 3 6 19
4
2 19 1 16
4
11 3 11 3
4
11 29 29 11
3
16 15 31
4
15 25 9 31
4
30 8 8 30
4
15 25 24 14
4
28 6 3 25
4
12 15 15 12
4
4 9 25 20
4
20 15 4 31
4
12 25 23 2
4
12 24 9 29
4
10 13 17 22
4
23 14 5 28
4
18 15 8 21
4
8 9 13 12
4
19 16 27 24
4
3 3 14 14
4
15 11 12 8
4
10 29 24 15
4
8 23 18 13...

output:

3
1 22
3 6
2 3
3
2 19
1 2
3 1
2
1 11
2 3
2
2 29
1 11
2
1 16
2 15
3
2 25
1 15
3 6
2
1 30
2 8
3
2 25
1 15
3 1
3
1 28
2 6
3 3
-1
3
3 25
2 9
1 4
3
1 20
2 15
3 4
3
2 25
1 12
3 2
3
2 24
1 12
3 5
3
3 17
1 10
2 7
3
1 23
2 14
3 5
3
1 18
2 15
3 7
-1
-1
2
3 14
1 3
-1
3
2 29
1 10
3 5
3
2 23
1 8
3 5
-1
3
2 31
1 ...

result:

ok OK 21053 yes 3947 no (25000 test cases)

Test #13:

score: 0
Accepted
time: 38ms
memory: 3628kb

input:

25000
4
42 28 60 10
4
24 36 46 18
4
4 3 32 39
4
52 22 19 49
4
21 37 23 39
4
36 42 21 27
4
33 41 46 38
4
29 33 12 48
4
34 23 25 44
4
19 57 53 31
4
45 6 2 41
4
18 25 36 47
4
48 44 59 39
4
42 10 53 21
4
12 43 26 61
4
23 41 30 32
4
35 62 39 58
4
44 17 53 8
4
32 53 1 20
4
10 23 1 28
4
55 61 54 60
4
57 15...

output:

3
1 42
2 28
3 10
3
2 36
1 24
3 10
3
3 32
1 4
2 3
3
1 52
2 22
3 5
3
2 37
1 21
3 2
3
1 36
3 21
2 14
-1
3
2 33
1 29
3 12
3
1 34
2 23
3 14
3
2 57
1 19
3 12
3
1 45
2 6
3 2
3
3 36
1 18
2 11
-1
3
1 42
3 31
2 10
3
2 43
3 26
1 12
3
2 41
1 23
3 9
-1
3
1 44
2 17
3 8
3
1 32
2 21
3 1
3
2 23
1 10
3 1
-1
3
1 57
2 ...

result:

ok OK 21323 yes 3677 no (25000 test cases)

Test #14:

score: -100
Wrong Answer
time: 8ms
memory: 3620kb

input:

16666
5
2 1 2 3 2
6
3 1 2 1 2 3
6
1 3 1 2 3 2
5
2 3 1 2 2
6
3 3 1 1 3 3
5
2 3 3 1 3
6
3 3 3 3 2 2
6
3 2 3 1 2 1
6
3 2 1 3 2 1
5
3 2 3 3 1
5
1 2 3 2 2
6
2 1 1 1 2 1
6
2 1 1 3 3 2
6
3 1 1 2 2 3
6
3 2 1 1 2 3
6
3 1 1 3 2 2
5
3 1 3 3 2
6
2 1 3 3 2 1
6
1 3 1 3 2 2
6
3 2 2 1 3 1
6
2 2 3 1 3 1
6
3 3 1 3 1 ...

output:

-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
1
1 2
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
1
5 3
-1
-1
1
3 3
-1
-1
-1
-1
1
1 3
-1
-1
-1
-1
-1
1
1 2
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
-1
1
1 3
-1
1
2 2
-1
-1
-1
-1
1
3 2
-1
-1
1
1 3
-1
-1
-1
-1
1
1 2
-1
-1
-1
-1
-1
-1
1
3 2
-1
-1
-1
-1
1
4...

result:

wrong answer game has not ended yet (test case 12)