QOJ.ac

QOJ

IDProblemSubmitterResultTimeMemoryLanguageFile sizeSubmit timeJudge time
#174397#6634. Central Subsetcada_dia_mas_insanos#WA 3ms8564kbC++172.5kb2023-09-10 07:05:462023-09-10 07:05:47

Judging History

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

  • [2023-09-10 07:05:47]
  • 评测
  • 测评结果:WA
  • 用时:3ms
  • 内存:8564kb
  • [2023-09-10 07:05:46]
  • 提交

answer

#include <bits/stdc++.h>

using namespace std;

const int maxn = 2e5 + 10, oo = 1e9;

mt19937 rng(chrono::steady_clock::now().time_since_epoch().count());
int rand(int l, int r) {
    return uniform_int_distribution<int>(l, r)(rng);
}

int n, m;
int dis[maxn], in[maxn], par[maxn];
vector <int> graph[maxn];

void bfs() {
    for (int i=0; i <n; i++) dis[i]=oo,par[i]=-1;
    queue <int> q;
    for (int i=0; i < n; i++) if (in[i]) dis[i]=0, par[i]=-1, q.push(i);
    while (!q.empty()) {
        int u = q.front(); q.pop();
        for(int&v : graph[u]) {
            if (dis[v] > dis[u]+1) {
                par[v]=u;
                dis[v]=dis[u]+1;
                q.push(v);
            }
        }
    }
}
void clean() {
    for (int i=0; i < n; i++) {
        graph[i].clear();
		in[i]=0;
		par[i]=-1;
        dis[i]=oo;
    }
}
int main() {
    ios_base::sync_with_stdio(0), cin.tie(0);
    #ifdef LOCAL
        freopen("input.txt", "r", stdin);
        freopen("output.txt", "w", stdout);
    #endif // LOCAL

    int tt; cin >> tt;
    while (tt--) {
        cin >> n >> m;
        for (int i=0; i<m; i++) {
            int u, v; cin >> u >> v;
            u--, v--;
            graph[u].push_back(v);
            graph[v].push_back(u);
        }

        in[0]=1;
        bfs();
        int limit = ceil(sqrt(n));
        vector <int> taken = {0};
        while (taken.size() < limit) {
            int w=-1;
            for (int i=0; i<n; i++) {
                if (in[i]) continue;
                if (w == -1 || dis[i]>dis[w]) w=i;
            }
            if (dis[w] <= limit) break;
			if (w == -1) break;
			for (int it=0; it<limit && par[w]!=-1; it++) w=par[w];
			cout << w +1 << endl;
            taken.push_back(w);
            in[w]=1;
            bfs();
        }

        bool ok=1;
        queue <int> q;
        for (int i=0; i <n; i++) dis[i]=oo;
        for (int& u : taken) q.push(u), dis[u]=0;
        while (!q.empty()) {
            int u = q.front(); q.pop();
            for(int& v : graph[u]) {
                if (dis[v] > dis[u]+1) {
                    dis[v] = dis[u]+1;
                    q.push(v);
                }
            }
        }
        for (int i=0; i<n; i++) ok &= dis[i]<=limit;
        if (!ok) cout << -1 << endl;
        else {
            cout << taken.size() << endl;
            for (int& i : taken) cout << i+1 << ' ';
            cout << endl;
        }
        clean();
    }
    return 0;
}

Details

Tip: Click on the bar to expand more detailed information

Test #1:

score: 0
Wrong Answer
time: 3ms
memory: 8564kb

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

result:

wrong answer Condition failed: "subset.size() == sz" (test case 2)