QOJ.ac

QOJ

IDProblemSubmitterResultTimeMemoryLanguageFile sizeSubmit timeJudge time
#797195#7107. Chaleurlichenyu_acWA 128ms4768kbC++14963b2024-12-02 18:47:582024-12-02 18:47:59

Judging History

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

  • [2024-12-02 18:47:59]
  • 评测
  • 测评结果:WA
  • 用时:128ms
  • 内存:4768kb
  • [2024-12-02 18:47:58]
  • 提交

answer

#include<bits/stdc++.h>
using namespace std;
const int N=1e5+10;

int n,m;
int deg[N],p[N];
bool flag[N];

void solve(){
    scanf("%d%d",&n,&m);
    for(int i=0;i<=n;i++)deg[i]=0,flag[i]=0;
    for(int i=1;i<=m;i++){
        int x,y;scanf("%d%d",&x,&y);
        deg[x]++,deg[y]++;
    }
    if(m==0)printf("%d 1\n",n);
    iota(p+1,p+n+1,1);
    sort(p+1,p+n+1,[&](int x,int y){
        return deg[x]>deg[y];
    });
    int sz=0;
    for(int i=1;i<=n;i++){
        int x=p[i];
        if(deg[x]>=sz)sz++,flag[x]=1;
        else break;
    }
    int ans=1;
    for(int i=1;i<=n;i++){
        if(!flag[i]&&deg[i]==sz-1)ans++;
    }
    printf("%lld ",ans);
    int cnt1=0,cnt2=1;
    for(int i=1;i<=n;i++){
        if(!flag[i])continue;
        if(deg[i]==sz-1)cnt1++;
        if(deg[i]==sz)cnt2++;
    }
    printf("%d\n",cnt1?cnt1:cnt2);
}

int main(){
    int T;scanf("%d",&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: 3904kb

input:

3
3 2
1 2
2 3
6 6
1 2
2 3
1 3
1 4
2 5
3 6
4 1
1 2

output:

2 1
1 4
1 2

result:

ok 3 lines

Test #2:

score: -100
Wrong Answer
time: 128ms
memory: 4768kb

input:

2231
1 0
5 7
4 1
3 4
3 1
3 5
4 2
3 2
4 5
5 4
2 1
2 5
2 4
2 3
5 10
3 2
2 5
1 4
4 2
4 5
1 2
1 3
3 5
3 4
1 5
5 10
1 3
2 4
1 4
5 2
2 3
1 5
5 4
1 2
3 4
5 3
5 9
2 5
3 5
2 3
2 1
4 3
3 1
4 1
4 5
2 4
5 4
4 2
4 1
4 5
4 3
5 9
4 1
4 5
3 4
2 4
2 1
3 1
2 5
3 5
3 2
5 4
2 5
2 3
2 1
2 4
5 9
5 2
1 3
4 3
1 2
5 4
4 2
5...

output:

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

result:

wrong answer 2nd lines differ - expected: '3 1', found: '1 1'