QOJ.ac
QOJ
ID | 题目 | 提交者 | 结果 | 用时 | 内存 | 语言 | 文件大小 | 提交时间 | 测评时间 |
---|---|---|---|---|---|---|---|---|---|
#780352 | #6421. Degree of Spanning Tree | ASnown | RE | 1ms | 5816kb | C++17 | 2.2kb | 2024-11-25 10:20:48 | 2024-11-25 10:20:49 |
Judging History
answer
#include<bits/stdc++.h>
#define file(F) freopen(#F".in","r",stdin),freopen(#F".out","w",stdout)
#define lowbit(x) ((x)&-(x))
#define ALL(x) (x).begin(),(x).end()
#define debug(...) fprintf(stderr,__VA_ARGS__)
#define popc(x) (__builtin_popcountll((x)))
#define abs(x) ((x)>=0?(x):-(x))
using namespace std;
using ll=long long;
using uint=uint32_t;
template<typename T>
inline bool Max(T &x,T y) { return std::less<T>()(x,y)&&(x=y,true); }
template<typename T>
inline bool Min(T &x,T y) { return std::less<T>()(y,x)&&(x=y,true); }
void Solve();
const int N = 2e5+25;
int n,m;
int deg[N];
pair<int,int> G[N];
int p[N];
int Find(int x) { return x==p[x]?x:p[x]=Find(p[x]); }
void Union(int x,int y) { if((x=Find(x))!=(y!=Find(y))) p[y]=x; }
signed main() {
#ifndef ONLINE_JUDGE
#endif
cin.tie(nullptr)->sync_with_stdio(false);
int T; cin>>T; while(T--)
Solve();
}
void Solve() {
cin>>n>>m;
iota(p+1,p+n+1,1),fill(deg+1,deg+n+1,0);
vector<pair<int,int>> ans;
for(int i=1;i<=m;i++) {
int u,v; cin>>u>>v;
if(u==v) { --i,--m; continue; }
G[i]={u,v};
if(Find(u)!=Find(v)) {
++deg[u],++deg[v];
Union(u,v);
ans.emplace_back(u,v);
}
}
int rt=-1;
for(int i=1;i<=n;i++) if(deg[i]>n/2) rt=i;
if(!~rt) {
puts("Yes");
for(auto E:ans) printf("%d %d\n",E.first,E.second);
return ;
}
iota(p+1,p+n+1,1);
vector<int> son;
vector<pair<int,int>> tans; tans.swap(ans);
for(auto E:tans) {
int u,v; tie(u,v)=E;
if(u==rt||v==rt) {
son.emplace_back(u==rt?v:u);
continue;
}
if(Find(u)!=Find(v)) {
Union(u,v);
ans.emplace_back(u,v);
}
}
for(int i=1;i<=m;i++) {
int u,v; tie(u,v)=G[i];
if(u==rt||v==rt||Find(u)==Find(v)) continue;
Union(u,v);
++deg[u],++deg[v];
ans.emplace_back(u,v);
if(--deg[rt]<=n/2) break;
}
for(auto x:son) if(Find(x)!=Find(rt)&°[x]<=n/2)
Union(x,rt),ans.emplace_back(x,rt);
assert(ans.size()<=n-1);
if(ans.size()!=n-1) return void(puts("No"));
puts("Yes");
for(auto E:ans) printf("%d %d\n",E.first,E.second);
}
詳細信息
Test #1:
score: 100
Accepted
time: 1ms
memory: 5816kb
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 1 3 1 4 4 5 4 6 No
result:
ok 2 cases
Test #2:
score: -100
Runtime Error
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...