QOJ.ac

QOJ

IDProblemSubmitterResultTimeMemoryLanguageFile sizeSubmit timeJudge time
#716528#9544. Grand Prix of Ballancelzr010506#WA 3ms5868kbC++201.1kb2024-11-06 15:27:262024-11-06 15:27:27

Judging History

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

  • [2024-11-06 15:27:27]
  • 评测
  • 测评结果:WA
  • 用时:3ms
  • 内存:5868kb
  • [2024-11-06 15:27:26]
  • 提交

answer

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

const int N=2e5+5;

int ans[N];
pair<int,int> opt[N];
bool vis[N];

inline void solve() {
    int n,m,q;
    scanf("%d%d%d",&n,&m,&q);
    fill(vis+1,vis+m+1,0);
    fill(ans+1,ans+m+1,0);
    int sc=0;
    int lst=-1;
    int now=0;
    for (int i=0;i<q;i++) {
        int c;
        scanf("%d",&c);
        if (c==1) {
            sc=m;
            scanf("%d",&lst);
            now++;
        }
        if (c==2) {
            int id,lv;
            scanf("%d%d",&id,&lv);
            if (vis[id]!=now && lv==lst) {
                vis[id]=now;
                ans[id]+=sc--;
            }
        }
        if (c==3) {
            int id,lv;
            scanf("%d%d",&id,&lv);
            if (vis[id]!=now && lv==lst) {
                vis[id]=now;
            }
        }
    }
    for (int i=1;i<=m;i++) opt[i]={-ans[i],i};
    sort(opt+1,opt+m+1);
    for (int i=1;i<=m;i++) printf("%d %d\n",opt[i].second,-opt[i].first);
}

int main() {
    int T;
    scanf("%d",&T);
    while (T--) solve();
}

Details

Tip: Click on the bar to expand more detailed information

Test #1:

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

input:

3
3 4 6
1 2
2 1 1
2 2 2
3 3 2
2 3 2
2 1 2
3 4 8
1 2
2 1 1
2 2 2
3 3 2
2 3 2
2 1 2
1 1
2 1 1
3 4 7
1 2
2 1 1
2 2 2
3 3 2
2 3 2
2 1 2
1 1

output:

2 4
1 3
3 0
4 0
1 7
2 4
3 0
4 0
2 4
1 3
3 0
4 0

result:

ok 12 lines

Test #2:

score: 0
Accepted
time: 1ms
memory: 5868kb

input:

10
18 8 8
2 1 6
1 13
2 1 18
3 8 13
2 7 14
2 5 11
3 6 13
3 1 13
26 7 11
1 22
2 7 22
1 9
2 6 24
1 2
1 18
3 3 4
2 3 18
1 26
3 7 1
3 2 26
1 3 33
3 3 1
2 3 1
2 2 1
1 1
2 1 1
2 1 1
3 1 1
3 3 1
3 2 1
3 3 1
2 2 1
2 2 1
3 3 1
2 2 1
2 2 1
3 3 1
2 3 1
2 3 1
3 3 1
2 3 1
2 2 1
2 2 1
2 2 1
2 1 1
3 2 1
2 2 1
3 2 1...

output:

1 0
2 0
3 0
4 0
5 0
6 0
7 0
8 0
3 7
7 7
1 0
2 0
4 0
5 0
6 0
1 3
2 0
3 0
1 0
2 0
3 0
4 0
5 0
6 0
7 0
8 0
9 0
10 0
11 0
12 0
13 0
14 0
15 0
16 0
1 0
2 0
3 0
4 0
5 0
6 0
7 0
8 0
25 25
1 0
2 0
3 0
4 0
5 0
6 0
7 0
8 0
9 0
10 0
11 0
12 0
13 0
14 0
15 0
16 0
17 0
18 0
19 0
20 0
21 0
22 0
23 0
24 0
1 0
2 0
...

result:

ok 100 lines

Test #3:

score: -100
Wrong Answer
time: 3ms
memory: 3836kb

input:

100
3 51 102
3 35 3
3 40 1
3 34 1
1 3
2 17 3
3 43 3
3 34 3
3 13 3
1 1
3 23 3
2 41 1
3 20 1
2 6 1
2 16 1
2 25 3
3 33 1
3 20 3
3 25 1
3 40 1
2 19 1
3 44 1
1 2
3 23 2
2 47 2
2 33 1
3 1 2
3 29 2
2 34 1
3 14 2
2 37 2
3 49 2
2 18 2
3 14 2
3 17 2
2 41 2
3 27 1
3 4 2
2 6 2
3 12 2
2 36 2
2 46 1
2 41 2
2 4 2
...

output:

41 177
6 97
18 88
16 70
33 59
17 51
47 51
37 50
11 48
19 48
36 46
4 44
31 43
8 42
29 41
34 40
25 38
5 37
42 36
39 35
46 32
40 31
14 30
9 29
3 27
20 26
2 24
12 23
7 22
1 0
10 0
13 0
15 0
21 0
22 0
23 0
24 0
26 0
27 0
28 0
30 0
32 0
35 0
38 0
43 0
44 0
45 0
48 0
49 0
50 0
51 0
10 44
18 44
20 44
3 22
1...

result:

wrong answer 1st lines differ - expected: '41 99', found: '41 177'