QOJ.ac

QOJ

IDProblemSubmitterResultTimeMemoryLanguageFile sizeSubmit timeJudge time
#515750#9176. Non-Interactive Nimyzy_21WA 218ms3848kbC++141.9kb2024-08-11 23:06:572024-08-11 23:06:59

Judging History

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

  • [2024-08-11 23:06:59]
  • 评测
  • 测评结果:WA
  • 用时:218ms
  • 内存:3848kb
  • [2024-08-11 23:06:57]
  • 提交

answer

#include <bits/stdc++.h>
using namespace std;
#define int long long

void solve() {
    int n;cin >> n;
    vector<vector<int>> a(100, vector<int> ());

    for(int i = 1;i <= n; i++){
        int x;cin >> x;
        bitset<100> bt(x);
        for(int j = 0;j < 100; j++){
            if(bt[j]) a[j].push_back(i);
        }
    }
    int f=1;
    vector<int> ans1, ans2;
    for(int i = 0; i < 100; i++){
        int xi = -1;
        f = 1;
        for(int j = 0; j < 70; j++){
            if(a[j].size() > 0){
                f = 0;
                if(a[j].size() == 2){
                    xi = j;
                    break;
                }
            }
        }
        if(f==1) break;
        if(xi==-1){
            cout<<"-1\n";
            return;
        }
        int x=a[xi][0], y=a[xi][1];
        int an=0;
        for(int j=0;j<70;j++){
            int fx=-1,fy=-1;
            for(int k=0;k<a[j].size();k++){
                if(a[j][k]==x){
                    fx=k;
                }
                if(a[j][k]==y){
                    fy=k;
                }
            }
            if(fx!=-1&&fy!=-1){
                if(fx>fy){
                    a[j].erase(a[j].begin()+fx);
                    a[j].erase(a[j].begin()+fy);
                }
                else{
                    a[j].erase(a[j].begin()+fy);
                    a[j].erase(a[j].begin()+fx);
                }
                an+=(1ll<<j);
            }
        }
        ans1.push_back(an);
        ans2.push_back(x);
    }
    if(f==0){
        cout<<"-1\n";
        return;
    }
    cout<<ans1.size()<<"\n";
    for(int i=0;i<ans1.size();i++){
        cout<<ans2[i]<<" "<<ans1[i]<<"\n";
    }
    return;
}
signed main()
{
#if !LOCAL
    ios::sync_with_stdio(0);
    cin.tie(0);
#endif
    int tt = 1;
    cin >> tt;
    while (tt--)
        solve();
#if LOCAL
system("pause");
#endif
    return 0;
}

Details

Tip: Click on the bar to expand more detailed information

Test #1:

score: 100
Accepted
time: 0ms
memory: 3612kb

input:

2
4
4 2 7 1
4
1 1 1 1

output:

3
3 1
2 2
1 4
-1

result:

ok OK 1 yes 1 no (2 test cases)

Test #2:

score: 0
Accepted
time: 42ms
memory: 3656kb

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: 181ms
memory: 3568kb

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: 35ms
memory: 3820kb

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
1 1
2 2
2
2 1
1 2
1
1 1
2
1 1
2 2
2
1 1
1 2
2
1 1
2 2
1
1 1
1
1 3
1
1 3
2
1 1
2 2
2
1 1
2 2
2
1 1
1 2
1
1 2
2
1 1
1 2
1
1 3
2
1 1
1 2
1
1 1
2
1 1
2 2
2
1 1
2 2
2
2 1
1 2
2
1 1
2 2
2
1 1
2 2
2
1 1
2 2
2
1 1
1 2
2
2 1
1 2
2
1 1
2 2
2
1 1
2 2
1
1 1
1
1 3
2
1 1
1 2
1
1 3
2
1 1
2 2
2
2 1
1 2
2
2 1
1 2
...

result:

ok OK 33333 yes 0 no (33333 test cases)

Test #5:

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

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
1 1
2 6
2
1 1
1 4
2
1 3
1 4
2
1 2
1 4
3
1 1
2 2
1 4
3
1 1
2 2
1 4
2
1 3
1 4
2
1 1
2 2
2
2 3
1 4
2
1 2
2 4
2
1 1
2 6
2
2 1
1 4
2
1 1
2 4
1
1 4
1
1 6
2
2 3
1 4
2
2 2
1 4
2
1 1
2 2
2
1 3
2 4
1
1 2
2
1 3
1 4
2
2 5
1 2
2
1 1
1 6
2
1 3
1 4
2
2 3
1 4
2
1 2
2 4
2
1 1
1 6
2
1 1
1 2
3
1 1
2 2
1 4
2
1 2
2 4
...

result:

ok OK 33333 yes 0 no (33333 test cases)

Test #6:

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

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
1 1
2 2
3
1 1
1 2
2 4
2
1 2
2 4
2
1 5
1 2
2
2 1
1 6
1
1 14
2
2 1
1 4
2
1 9
2 4
2
1 3
2 12
1
1 10
2
1 1
2 14
2
2 1
1 2
3
2 3
1 4
1 8
3
2 1
1 2
1 12
3
1 1
2 10
1 4
2
1 2
1 8
2
2 10
1 4
3
1 1
2 4
1 8
2
2 1
1 4
3
2 1
1 2
1 12
1
1 14
2
2 3
1 8
3
1 1
2 2
1 4
2
1 1
1 4
1
1 6
2
2 1
1 10
3
2 2
1 4
1 8
3
1 ...

result:

ok OK 33333 yes 0 no (33333 test cases)

Test #7:

score: 0
Accepted
time: 45ms
memory: 3848kb

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
2 5
1 18
3
1 17
2 2
1 8
3
1 1
2 8
1 16
3
1 1
1 10
2 4
3
2 2
1 20
1 8
2
1 21
1 2
3
1 1
2 12
1 16
2
1 1
2 24
1
1 29
2
2 7
1 8
3
1 1
1 20
2 8
2
1 2
2 28
2
1 25
1 6
3
1 1
2 18
1 12
2
1 6
1 16
2
1 1
2 22
2
1 5
1 2
2
1 1
2 14
2
1 3
1 24
2
1 2
2 16
2
1 3
2 20
3
1 1
2 10
1 20
3
2 2
1 4
1 24
3
1 18
2 4
1 8...

result:

ok OK 33333 yes 0 no (33333 test cases)

Test #8:

score: 0
Accepted
time: 218ms
memory: 3792kb

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:

3
1 73265311027085671
2 67612836134395912
1 2674022237077648
3
1 171577149378039875
1 108086620126773528
2 296685931955120800
3
1 82265464553747622
1 7089661311764504
2 714854403670016
3
1 288294764154732595
2 46448869288124108
1 6825906047852800
3
2 396611456927796225
1 163959186854781446
1 2254239...

result:

ok OK 33333 yes 0 no (33333 test cases)

Test #9:

score: -100
Wrong Answer
time: 30ms
memory: 3624kb

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
3 1
1 2
2
1 3
2 2
2
2 3
1 1
2
2 1
1 2
2
1 1
1 2
2
1 3
2 2
2
2 3
1 2
2
1 1
1 2
2
1 3
3 1
2
2 1
1 2
2
1 1
1 2
2
1 3
2 2
2
3 1
1 2
2
2 3
1 1
2
2 1
1 2
2
2 3
1 1
2
2 1
1 2
2
1 3
3 1
2
2 3
1 2
2
1 1
1 2
2
1 3
3 1
2
2 1
1 2
2
1 1
2 2
2
1 1
2 2
2
1 1
1 2
2
2 3
1 1
2
1 3
2 1
2
3 3
1 2
2
1 1
1 2
...

result:

wrong answer opponent has more than one possible optimal move (test case 3)