QOJ.ac

QOJ

IDProblemSubmitterResultTimeMemoryLanguageFile sizeSubmit timeJudge time
#785400#6421. Degree of Spanning TreeyanshanjiahongAC ✓140ms34916kbC++202.6kb2024-11-26 17:49:552024-11-26 17:49:56

Judging History

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

  • [2024-11-26 17:49:56]
  • 评测
  • 测评结果:AC
  • 用时:140ms
  • 内存:34916kb
  • [2024-11-26 17:49:55]
  • 提交

answer

#include<bits/stdc++.h>
#define rep(i,j,k) for(int i=j;i<=k;i++)
#define repp(i,j,k) for(int i=j;i>=k;i--)
#define ls(x) (x<<1)
#define rs(x) ((x<<1)|1)
#define mp make_pair
#define sec second
#define fir first
#define pii pair<int,int>
#define lowbit(i) i&-i
#define int long long
using namespace std;
typedef long long ll;
const int N=2e5+5,M=6,S=(1<<18)+5,inf=(ll)1e18+7,mo=998244353;
const double eps=1e-8;
void read(int &p){
	int x=0,w=1;
	char ch=0;
	while(!isdigit(ch)){
		if(ch=='-')w=-1;
		ch=getchar();
	}
	while(isdigit(ch)){
		x=(x<<1)+(x<<3)+ch-'0';
		ch=getchar();
	}
	p=x*w;
}
int T;
int n,m;
vector<pii>e[N];
bool ont[N];
int bel[N];
pii eg[N];
struct bcj{
    int fa[N];
    void init(){
        rep(i,1,n)
            fa[i]=i;
    }
    int find(int x){
        if(x==fa[x])return x;
        return fa[x]=find(fa[x]);
    }
    void merge(int x,int y){
        x=find(x),y=find(y);
        if(x==y)return;
        fa[x]=y;
    }
}B;
int deg[N];
bool vis[N];
void dfs1(int x,int f){
    vis[x]=1;
    for(auto j:e[x]){
        if(vis[j.fir])continue;
        ont[j.sec]=1,deg[x]++,deg[j.fir]++;
        dfs1(j.fir,x);
    }
}
void print(){
    puts("Yes");
    rep(i,1,m)
        if(ont[i])printf("%lld %lld\n",eg[i].fir,eg[i].sec);
}
void dfs2(int x,int f,int bp){
    bel[x]=bp;
    for(auto j:e[x]){
        if(!ont[j.sec])continue;
        if(j.fir==f)continue;
        dfs2(j.fir,x,bp);
    }
}
int eid[N];
void solve(){
    read(n),read(m);
    rep(i,1,n)
        e[i].clear(),deg[i]=0,vis[i]=0;
    rep(i,1,m){
        int x,y;
        read(x),read(y),ont[i]=0;
        e[x].push_back(mp(y,i)),e[y].push_back(mp(x,i)),eg[i]=mp(x,y);
    }
    dfs1(1,0);
    int rt=max_element(deg+1,deg+n+1)-deg;
    if(deg[rt]<=n/2){
        print();
        return;
    }
    B.init();
    for(auto j:e[rt]){
        if(!ont[j.sec])continue;
        dfs2(j.fir,rt,j.fir),eid[j.fir]=j.sec;
    }
    rep(i,1,n){
        if(i==rt)continue;
        B.merge(i,bel[i]);
    }
    rep(i,1,m){
        if(eg[i].fir==rt||eg[i].sec==rt)continue;
        if(ont[i])continue;
        int x=B.find(eg[i].fir),y=B.find(eg[i].sec);
        if(x==y)continue;
        if(deg[x]<deg[y])swap(x,y);
        deg[x]--;
        if(deg[eg[i].fir]+1>n/2||deg[eg[i].sec]+1>n/2){
            deg[x]++;
            continue;
        }
        deg[eg[i].fir]++,deg[eg[i].sec]++,deg[rt]--;
        ont[i]=1,ont[eid[x]]=0,B.merge(x,y);
    }
    if(deg[rt]>n/2)puts("No");
    else print();
}
signed main(){
    read(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: 12000kb

input:

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

output:

Yes
1 2
2 3
3 4
4 5
4 6
No

result:

ok 2 cases

Test #2:

score: 0
Accepted
time: 61ms
memory: 15288kb

input:

11140
10 15
9 6
5 7
6 5
2 3
7 5
7 5
3 10
9 7
5 5
9 1
7 5
2 8
7 5
4 3
6 2
9 19
3 7
3 9
2 8
2 8
3 6
5 1
1 8
8 9
8 3
4 8
5 5
3 1
4 3
1 3
8 6
1 3
7 4
4 3
8 8
12 20
10 2
5 5
2 4
3 3
3 3
5 11
9 2
5 5
7 12
11 3
3 3
3 5
5 3
3 1
4 6
7 11
6 8
4 5
6 12
6 5
8 18
4 2
4 3
2 4
2 4
4 3
4 8
2 2
6 7
2 4
6 2
1 4
8 7
4...

output:

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

result:

ok 11140 cases

Test #3:

score: 0
Accepted
time: 140ms
memory: 34916kb

input:

5
100000 197799
37555 22723
91160 32701
6451 4416
43186 26432
9750 82955
28292 33907
91534 78442
17771 67061
40351 28116
21494 23114
34672 66640
72636 95093
13033 6538
53698 87837
79541 71230
53985 63500
84753 5378
67971 56748
90951 20169
4465 97293
18331 53564
41043 95738
48579 96439
90865 7526
391...

output:

Yes
37555 22723
91160 32701
6451 4416
43186 26432
9750 82955
28292 33907
91534 78442
17771 67061
40351 28116
21494 23114
34672 66640
72636 95093
13033 6538
53698 87837
79541 71230
53985 63500
84753 5378
67971 56748
90951 20169
4465 97293
18331 53564
41043 95738
48579 96439
90865 7526
39102 81376
166...

result:

ok 5 cases

Test #4:

score: 0
Accepted
time: 84ms
memory: 26760kb

input:

5
100000 100000
98195 31806
98195 70169
92153 98195
98195 46320
94369 56771
94369 49988
74295 98195
33796 98195
89903 94369
98195 1814
82388 98195
10189 94369
98195 6267
29845 98195
22425 94369
6241 98195
98195 33204
66516 98195
94369 71364
26277 94369
94369 94722
94369 25349
14629 98195
9329 98195
...

output:

Yes
98195 31806
98195 70169
92153 98195
98195 46320
94369 56771
94369 49988
74295 98195
33796 98195
89903 94369
98195 1814
82388 98195
10189 94369
98195 6267
29845 98195
22425 94369
6241 98195
98195 33204
66516 98195
94369 71364
26277 94369
94369 94722
94369 25349
14629 98195
9329 98195
98195 38219
...

result:

ok 5 cases

Test #5:

score: 0
Accepted
time: 120ms
memory: 29176kb

input:

5
100000 149998
50735 5447
50735 24875
15119 49666
50735 30352
44756 49555
26546 32695
98445 50735
71657 50735
92212 50735
50735 19382
30935 50735
43688 46767
54630 54562
31371 50735
48877 50735
78593 76833
74317 37258
50735 48236
67116 50735
36579 50735
37536 44353
50735 46602
35088 29568
86657 507...

output:

Yes
50735 5447
50735 24875
15119 49666
50735 30352
44756 49555
26546 32695
98445 50735
71657 50735
92212 50735
50735 19382
30935 50735
43688 46767
54630 54562
31371 50735
48877 50735
78593 76833
74317 37258
50735 48236
67116 50735
36579 50735
37536 44353
50735 46602
35088 29568
86657 50735
50735 612...

result:

ok 5 cases

Test #6:

score: 0
Accepted
time: 62ms
memory: 23172kb

input:

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

output:

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

result:

ok 11102 cases

Test #7:

score: 0
Accepted
time: 101ms
memory: 25584kb

input:

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

output:

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

result:

ok 11102 cases

Test #8:

score: 0
Accepted
time: 54ms
memory: 9968kb

input:

100000
5 7
2 5
1 4
2 1
1 3
5 1
4 2
2 3
5 7
2 4
4 3
2 1
4 5
2 5
1 4
3 2
5 7
5 1
4 2
4 5
4 3
4 1
3 1
2 1
5 7
4 1
4 3
3 5
2 5
4 5
2 4
1 5
5 7
5 2
2 1
5 4
2 4
4 3
3 2
1 4
5 7
2 4
5 1
1 3
2 1
2 3
4 1
2 5
5 7
5 4
4 2
5 2
3 5
4 1
5 1
4 3
5 7
1 5
2 3
2 5
2 4
3 5
4 5
1 2
5 7
1 3
5 2
2 4
1 2
5 3
2 3
4 3
5 7
3...

output:

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

result:

ok 100000 cases

Test #9:

score: 0
Accepted
time: 23ms
memory: 12112kb

input:

1000
5 970
3 1
4 3
3 1
1 3
2 3
2 3
3 2
2 3
2 3
2 3
3 2
3 2
3 1
2 3
3 2
3 2
2 3
2 3
3 2
3 2
2 3
3 2
2 3
2 3
3 5
2 3
2 3
2 3
3 2
3 2
5 3
2 3
3 2
2 3
3 2
3 2
3 1
3 2
3 5
3 2
2 1
2 3
3 5
2 3
2 3
5 3
3 2
3 1
3 2
3 2
1 3
4 3
3 1
4 3
5 3
3 2
3 4
2 3
3 5
2 3
3 1
3 2
2 3
4 3
2 3
2 3
1 3
3 1
2 3
3 2
3 2
2 3
2...

output:

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

result:

ok 1000 cases

Test #10:

score: 0
Accepted
time: 48ms
memory: 14064kb

input:

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

output:

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

result:

ok 100000 cases