QOJ.ac

QOJ

IDProblemSubmitterResultTimeMemoryLanguageFile sizeSubmit timeJudge time
#743327#9525. Welcome to Join the Online Meeting!zxcdxwWA 96ms27560kbC++141.8kb2024-11-13 18:57:052024-11-13 18:57:05

Judging History

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

  • [2024-11-13 18:57:05]
  • 评测
  • 测评结果:WA
  • 用时:96ms
  • 内存:27560kb
  • [2024-11-13 18:57:05]
  • 提交

answer

#include<bits/stdc++.h>

using namespace std;

#define ull unsigned long long
#define ll long long
#define lowbit(x) (x)&(-x)
//#define int long long
//#define double long double 
const int N = 2e5 + 5;
const ll base = 131;
const ll mod = 998244353;
void solve() {
    int n,m,k;
    cin>>n>>m>>k;
    vector<int>a(n+1);
    for(int i=1;i<=k;++i){
        int x;
        cin>>x;
        a[x]=1;
    }
    vector<vector<int>>w(n+1);
    while(m--){
        int u,v;
        cin>>u>>v;
        w[u].push_back(v);
        w[v].push_back(u);
    }
    vector<int>vis(n+1),Vis(n+1);
    queue<int>q;
    for(int i=1;i<=n;++i){
        if(!a[i]){
            q.push(i);
            Vis[i]=1;
            //cerr<<i<<'\n';
            break;
        }
    }
    vector<vector<int>>as(n+1);
    while(!q.empty()){
        int now=q.front();
        q.pop();
        if(vis[now]) continue;
        vis[now]=1;
        for(int i=0;i<w[now].size();++i){
            int res=w[now][i];
            if(vis[res]) continue;
            if(!Vis[res]) as[now].push_back(res),Vis[res]=1;
            if(!vis[res]&&!a[res]) q.push(res); 
        }
    }
    for(int i=1;i<=n;++i){
        if(!Vis[i]){
            //cerr<<i<<'\n';
            cout<<"No\n";
            return ;
        }
    }
    cout<<"Yes\n";
    int now=0;
    while(as[now].empty()) now++;
    int cnt=0;
    for(int i=1;i<=n;++i){
        if(!as[i].empty()) cnt++;
    }
    cout<<cnt<<'\n';
    for(int i=now;i<=n;++i){
        if(as[i].empty()) continue;
        cout<<i<<" "<<as[i].size()<<" ";
        for(int j=0;j<as[i].size();++j) cout<<as[i][j]<<" ";
        cout<<'\n';
    }
}
int main() {
    ios::sync_with_stdio(false);
    cin.tie(0);
    int t = 1;
    //cin >> t;
    while (t--) solve();
}

Details

Tip: Click on the bar to expand more detailed information

Test #1:

score: 100
Accepted
time: 1ms
memory: 3488kb

input:

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

output:

Yes
2
1 2 2 3 
2 1 4 

result:

ok ok

Test #2:

score: 0
Accepted
time: 0ms
memory: 3628kb

input:

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

output:

No

result:

ok ok

Test #3:

score: 0
Accepted
time: 0ms
memory: 3752kb

input:

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

output:

Yes
1
1 3 3 4 2 

result:

ok ok

Test #4:

score: 0
Accepted
time: 0ms
memory: 3632kb

input:

6 6 0

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

output:

No

result:

ok ok

Test #5:

score: -100
Wrong Answer
time: 96ms
memory: 27560kb

input:

200000 199999 2
142330 49798
49798 116486
116486 64386
64386 192793
192793 61212
61212 138489
138489 83788
83788 89573
89573 8596
8596 156548
156548 41800
41800 14478
14478 27908
27908 82806
82806 9353
9353 160166
160166 92308
92308 36265
36265 126943
126943 190578
190578 191148
191148 177381
177381...

output:

Yes
199998
1 2 95113 178679 
2 1 198122 
3 1 41738 
4 1 196324 
5 1 91673 
6 1 796 
7 1 136018 
8 1 100182 
9 1 101606 
10 1 73864 
11 1 105951 
12 1 63827 
13 1 130553 
14 1 177897 
15 1 196567 
16 1 92389 
17 1 72182 
18 1 141202 
19 1 45379 
20 1 114057 
21 1 105287 
22 1 7260 
23 1 40268 
24 1 5...

result:

wrong answer on step #2, member 2 is not invited before inviting others