QOJ.ac
QOJ
ID | Problem | Submitter | Result | Time | Memory | Language | File size | Submit time | Judge time |
---|---|---|---|---|---|---|---|---|---|
#768803 | #9525. Welcome to Join the Online Meeting! | wk6_ | WA | 273ms | 84148kb | C++17 | 1.7kb | 2024-11-21 14:33:52 | 2024-11-21 14:33:53 |
Judging History
answer
#include <bits/stdc++.h>
using namespace std;
#define int long long
#define endl '\n'
#define inf 0x3f3f3f3f3f3f3f3f
#define PII pair<int, int>
const int N = 2e6 + 10;
int n, m, k, pr[N], a[N];
int find(int x) {
if (pr[x] == x)return x;
return pr[x] = find(pr[x]);
}
void join(int x, int y) {
int fx = find(x), fy = find(y);
if (fx != fy) {
pr[fx] = fy;
}
}
vector<int>g[N];
void solve() {
cin >> n >> m >> k;
map<int, int>mp;
for (int i = 1; i <= n; i++)pr[i] = i;
for (int i = 1; i <= k; i++) {
cin >> a[i];
mp[a[i]] = 1;
}
set<int>ans;
int fa = 0;
for (int i = 1; i <= m; i++) {
int u, v;
cin >> u >> v;
if (find(u) != find(v)) {
if (mp[u] == 0) {
if (ans.size() == 0) {
join(v, u);
ans.insert(u);
g[u].push_back(v);
fa = u;
} else {
if (find(u) == fa) {
join(v, u);
ans.insert(u);
g[u].push_back(v);
}
}
} else if (mp[v] == 0) {
if (ans.size() == 0) {
join(u, v);
ans.insert(v);
g[v].push_back(u);
fa = v;
} else {
if (find(v) == fa) {
join(u, v);
ans.insert(v);
g[v].push_back(u);
}
}
}
}
}
int cnt = 0;
for (int i = 1; i <= n; i++) {
if (pr[i] == i)cnt++;
}
if (cnt != 1)cout << "No" << endl;
else {
cout << "Yes" << endl;
cout << ans.size() << endl;
for (auto t : ans) {
cout << t << " ";
cout << g[t].size() << " ";
for (int j = 0; j < g[t].size(); j++) {
cout << g[t][j] << " ";
}
cout << endl;
}
}
}
signed main() {
ios::sync_with_stdio(false);
cin.tie(0), cout.tie(0);
int _ = 1;
// cin >> _;
while (_--) {
solve();
}
return 0;
}
Details
Tip: Click on the bar to expand more detailed information
Test #1:
score: 100
Accepted
time: 3ms
memory: 53492kb
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: 7ms
memory: 53480kb
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: 7ms
memory: 54092kb
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: 4ms
memory: 53788kb
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: 273ms
memory: 84148kb
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 1 178679 2 1 198122 3 1 41738 4 1 61178 5 1 91673 6 1 151278 7 1 136018 8 1 100182 9 1 101606 10 1 160835 11 1 105951 12 1 169521 13 1 130553 14 1 147118 15 1 196567 16 1 50682 17 1 72182 18 1 141202 19 1 45379 20 1 130909 21 1 147232 22 1 114131 23 1 40268 24 1 5...
result:
wrong answer on step #2, member 2 is not invited before inviting others