QOJ.ac

QOJ

IDProblemSubmitterResultTimeMemoryLanguageFile sizeSubmit timeJudge time
#185760#6634. Central Subsetucup-team870#WA 25ms14460kbC++171.4kb2023-09-22 16:14:442023-09-22 16:14:45

Judging History

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

  • [2023-09-22 16:14:45]
  • 评测
  • 测评结果:WA
  • 用时:25ms
  • 内存:14460kb
  • [2023-09-22 16:14:44]
  • 提交

answer

#include <bits/stdc++.h>
#define rep(i,l,r) for(int i=l; i<=r; i++)
#define IOS {cin.tie(0);cout.tie(0);ios::sync_with_stdio(0);}
using namespace std;
typedef long long ll;
typedef pair<int,int> P;
const int N=2e5+5;
int fa[N],dep[N];
vector<int>tu[N],ans[N];
int fd(int x){
    if(x==fa[x])return x;
    return fa[x]=fd(fa[x]);
}
void dfs(int now,int pre){
    dep[now]=dep[pre]+1;
    for(int son:tu[now]){
        if(son==pre)continue;
        dfs(son,now);
    }
}
void slv(){
    int n,m;cin>>n>>m;
    ans[0].clear();
    rep(i,1,n){
        fa[i]=i; tu[i].clear(); ans[i].clear();
    }
    rep(i,1,m){
        int u,v;cin>>u>>v;
        int uu=fd(u),vv=fd(v);
        if(uu!=vv){
            fa[uu]=vv; tu[u].push_back(v); tu[v].push_back(u);
        }
    }
    dfs(1,0);
    int sn=sqrt(n);
    while(sn*sn<n)++sn;
    rep(i,1,n){
        ans[dep[i]%sn].push_back(i);
    }
    rep(i,0,sn-1){
        // cout<<i<<" "<<ans[i].size()<<endl;
        // if(i==0)cout<<ans[i].size()<<"hh\n";
        if(ans[i].size() && ans[i].size()<=sn){
            cout<<ans[i].size()<<'\n';
            for(auto v:ans[i])cout<<v<<' '; cout<<'\n';return;
        }
    }
    assert(0);
}
int main() {
    IOS
    int T;cin>>T;
    while(T--)slv();

    return 0;
}
/*
1 
5 4
1 2
2 3
3 4
4 5

2
4 3
1 2
2 3
3 4

6 7
1 2
2 3
3 1
1 4
4 5
5 6
6 4
*/

Details

Tip: Click on the bar to expand more detailed information

Test #1:

score: 100
Accepted
time: 3ms
memory: 13932kb

input:

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

output:

2
2 4 
2
3 5 

result:

ok correct (2 test cases)

Test #2:

score: 0
Accepted
time: 12ms
memory: 13280kb

input:

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

output:

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

result:

ok correct (10000 test cases)

Test #3:

score: -100
Wrong Answer
time: 25ms
memory: 14460kb

input:

100
2000 1999
529 528
885 884
1221 1222
375 374
245 244
758 757
711 710
1521 1522
1875 1874
749 750
823 822
1959 1958
1767 1766
155 154
631 632
825 824
1330 1331
457 456
1344 1343
1817 1818
413 414
582 583
1828 1827
1335 1336
654 655
162 161
1668 1667
1966 1967
1472 1471
1185 1184
518 517
1509 1510
...

output:

44
45 90 135 180 225 270 315 360 405 450 495 540 585 630 675 720 765 810 855 900 945 990 1035 1080 1125 1170 1215 1260 1305 1350 1395 1440 1485 1530 1575 1620 1665 1710 1755 1800 1845 1890 1935 1980 
1
1 
44
45 90 135 180 225 270 315 360 405 450 495 540 585 630 675 720 765 810 855 900 945 990 1044 1...

result:

wrong answer Condition failed: "getMaxBfsDist(n, subset) <= csqrtn" (test case 4)