QOJ.ac

QOJ

IDProblemSubmitterResultTimeMemoryLanguageFile sizeSubmit timeJudge time
#134943#6634. Central Subset4k2kok#WA 13ms15836kbC++202.1kb2023-08-05 10:13:132023-08-05 10:13:15

Judging History

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

  • [2023-08-10 23:21:45]
  • System Update: QOJ starts to keep a history of the judgings of all the submissions.
  • [2023-08-05 10:13:15]
  • 评测
  • 测评结果:WA
  • 用时:13ms
  • 内存:15836kb
  • [2023-08-05 10:13:13]
  • 提交

answer

#include<bits/stdc++.h>
using namespace std;
#define INF 0x3f3f3f3f
#define PI acos(-1)
#define io ios::sync_with_stdio(false); cin.tie(0); cout.tie(0)
#define mem(a,b) memset((a),(b),sizeof(a))
typedef long long ll;
typedef unsigned long long ull;
#define int long long
#define db long double

const double eps = 1e-6;
const int mod = 1e9 + 7;
const int maxn = 2e5 + 10;
int n, m, d[maxn], vis[maxn];
vector<int> dep[maxn];
vector<int> edge[maxn];

void bfs(int u) {
    queue<int> que;
    que.push(u);
    vis[u] = 1;
    dep[1].push_back(u);
    while(!que.empty()) {
        int now = que.front();
        que.pop();
        for(int i = 0; i < edge[now].size(); i++) {
            int v = edge[now][i];
            if(vis[v] == 0) {
                vis[v] = vis[now] + 1;
                dep[vis[v]].push_back(v);
                que.push(v);
            }
        }
    }
}

void solve() {
    cin >> n >> m;
    for(int i = 0; i <= n; i++) d[i] = 0, vis[i] = 0, edge[i].clear(), dep[i].clear();
    int pos = 0, maxx = 0;
    for(int i = 0, u, v; i < m; i++) {
        cin >> u >> v;
        edge[u].push_back(v);
        edge[v].push_back(u);
        d[u]++; d[v]++;
        if(d[u] > maxx) {
            maxx = d[u];
            pos = u;
        }
        if(d[v] > maxx) {
            maxx = d[v];
            pos = v;
        }
    }
    bfs(pos);
    // cerr << pos << '\n';
    // for(int i = 1; i <= n; i++) {
    //     cerr << i << ": " << vis[i] << '\n';
    // }
    int len = (int)ceil(sqrt(n));
    vector<int> ans;
    for(int i = 1; dep[i].size() > 0; i += (len + 1)) {
        for(int j = 0; j < dep[i].size(); j++) {
            ans.push_back(dep[i][j]);
        }
    }
    if(ans.size() > len) {
        cout << -1 << '\n';
    }
    else {
        cout << ans.size() << '\n';
        for(int i = 0; i < ans.size(); i++) {
            cout << ans[i] << ' ';
        }
        cout << '\n';
    }
}

signed main(){
   io;
    int T = 1;
    cin >> T;
    while(T--) {
        solve();
    }
    return 0;
}

Details

Tip: Click on the bar to expand more detailed information

Test #1:

score: 100
Accepted
time: 3ms
memory: 14356kb

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:

1
2 
1
1 

result:

ok correct (2 test cases)

Test #2:

score: -100
Wrong Answer
time: 13ms
memory: 15836kb

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:

3
12 7 2 
1
2 
1
5 
-1
-1
3
5 1 9 
-1
3
2 13 7 
2
6 16 
1
2 
4
7 13 1 19 
1
4 
1
5 
1
10 
1
2 
3
4 9 14 
1
2 
1
2 
1
4 
1
2 
1
2 
2
2 8 
3
2 7 13 
5
14 9 10 7 1 
1
2 
3
5 10 15 
1
2 
3
6 10 1 
-1
1
2 
3
4 10 16 
1
2 
1
5 
2
6 16 
1
2 
1
3 
1
3 
3
6 8 1 
3
5 21 20 
1
2 
2
5 10 
1
2 
2
2 7 
1
2 
1
2 
...

result:

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