QOJ.ac

QOJ

IDProblemSubmitterResultTimeMemoryLanguageFile sizeSubmit timeJudge time
#213995#6634. Central SubsetzzzzWA 18ms55572kbC++171.8kb2023-10-14 16:52:372023-10-14 16:52:37

Judging History

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

  • [2023-10-14 16:52:37]
  • 评测
  • 测评结果:WA
  • 用时:18ms
  • 内存:55572kb
  • [2023-10-14 16:52:37]
  • 提交

answer

#include <bits/stdc++.h>
using namespace std;
using ll = long long;
const int N = 2e6 + 10;
const int mod = 1e9 + 7;

vector<int> e[N], ans;
int vis[N], f[N], dep[N];
struct node {
    int dep, id;
    bool operator<(const node &x) const {
        return dep > x.dep;
    }
} a[N];

void dfs1(int u, int fa) {
    vis[u] = 1;
    a[u].dep = a[fa].dep + 1;
    f[u] = fa;
    for (auto v : e[u]) {
        if (v == fa || vis[v]) continue;
        dfs1(v, u);
    }
}
int limit;
void dfs2(int u, int fa, int dis) {
    if (dis == limit) return;

    vis[u] = 1;
    for (auto v : e[u]) {
        // if (vis[v]) continue;
        dfs2(v, u, dis + 1);
    }
}

void solve() {
    int n, m;
    cin >> n >> m;
    limit = sqrt(n);
    limit += (limit * limit != n);
    for (int i = 1; i <= n; ++i) {
        a[i].dep = 0;
        vis[i] = 0;
        e[i].clear();
        a[i].id = i;
    }
    ans.clear();
    for (int i = 1; i <= m; ++i) {
        int u, v;
        cin >> u >> v;
        e[u].emplace_back(v);
        e[v].emplace_back(u);
    }
    dfs1(1, 0);
    for (int i = 1; i <= n; ++i) vis[i] = 0;
    sort(a + 1, a + n + 1);
    for (int i = 1; i <= n; ++i) {
        if (!vis[i]) {
            int u = a[i].id;
            int tot = 0;
            while (tot < limit && f[u] != 0) {
                u = f[u];
                tot++;
            }
            ans.emplace_back(u);
            dfs2(u, f[u], 0);
        }
    }
    cout << ans.size() << "\n";
    for (auto i : ans) cout << i << " ";
    cout << "\n";
}

signed main() {
    std::ios::sync_with_stdio(false);
    std::cin.tie(nullptr);
    std::cout.tie(nullptr);
    int _;
    std::cin >> _;
    while (_--)
        solve();
    return 0;
}

Details

Tip: Click on the bar to expand more detailed information

Test #1:

score: 100
Accepted
time: 6ms
memory: 55572kb

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 1 
1
1 

result:

ok correct (2 test cases)

Test #2:

score: -100
Wrong Answer
time: 18ms
memory: 54816kb

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:

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

result:

wrong answer Integer 5 violates the range [1, 4] (test case 1)