QOJ.ac

QOJ

IDProblemSubmitterResultTimeMemoryLanguageFile sizeSubmit timeJudge time
#127474#6634. Central SubsetshielderWA 53ms13928kbC++202.3kb2023-07-19 18:33:052023-07-19 18:33:05

Judging History

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

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

answer

#include<bits/stdc++.h>
using namespace std;
const int N = 2e5+10;
vector<int> v[N], e[N];
int dis[N], dep[N];
bool vis[N];
vector<int> ans;
int n, m, k;
int x, y;
int in[N];
int ed, mxdis, st;
void bfs(int st){
    mxdis = 0;
     queue<int> q;
     q.push(st);
     dis[st] = 0;
     vis[st] = 1;
     while(!q.empty()){
        int x = q.front();
        q.pop();
        for(auto y : v[x]){
            if(vis[y]) continue;
            vis[y] = 1;
            e[x].push_back(y);
            e[y].push_back(x);
            dis[y] = dis[x] +1;
             mxdis = max(mxdis,  dis[y]);
           // if(dis[y] < k){
                q.push(y);
            //}
       //     q.push(y);
        }
     }
}
int dfs(int x, int fa){
    if(e[x].size() == 0){
        dep[x] = 0;
        return 0 ;
    }
    int mx = 0;
    for(auto y : e[x]){
            if(y == fa) continue;
       mx = max(dfs(y, x), mx);
    }
    dep[x] = mx + 1;
    mx++;
    if(mx%k == 0){
       ans.push_back(x);
    }
    return mx;
}
bool cmp(int x,int y){
     return in[x] > in[y];
}
int main(){
   int tt;
   cin >> tt;
   while(tt--){
    for(int i = 1;i <= n;i++){
        v[i].clear();
        e[i].clear();
        vis[i] = 0;
        in[i] = 0;
        dis[i]=0;
    }    
    cin >> n >> m;
    ans.clear();

    k = ceil(sqrt(n));
    while(k * k < n) k++;
    for(int i = 1;i <= m;i++){
         cin >>x >> y;
         in[x]++;
         in[y]++;
         v[x].emplace_back(y);
         v[y].emplace_back(x);
    }
    if(n == 1){
        cout << "1\n1\n";
        continue;
    }
        mxdis = 0;
        for(int i = 1;i <= n;i++){
           if(in[i] > mxdis){
             st = i;
             mxdis = in[i];
           }
        }
        bfs(st);//cout << "-----------\n";
        for(int i = 1;i <= n;i++){
            if(dis[i] == mxdis/2){
                st = i;
                break;
            }
        }
        dfs(st, 0);
        if(ans.size() > k){
            cout << "-1\n";
        }
        else{
           // if(ans.size() == 0) ans.push_back(st);
        cout <<ans.size() << "\n";
        for(auto x : ans){
            cout <<x << " ";
        }
        cout << "\n";
        }
   }
   return 0;
}

Details

Tip: Click on the bar to expand more detailed information

Test #1:

score: 100
Accepted
time: 0ms
memory: 13928kb

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

result:

ok correct (2 test cases)

Test #2:

score: -100
Wrong Answer
time: 53ms
memory: 13708kb

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
4 12 8 
1
2 
1
4 
1
1 
1
1 
2
3 7 
1
1 
1
4 
2
12 3 
0

3
5 10 16 
1
4 
1
4 
1
8 
0

3
4 12 8 
1
2 
1
1 
1
4 
0

2
3 1 
1
3 
1
4 
1
5 
0

3
4 12 8 
1
2 
2
4 6 
1
2 
0

4
5 10 17 12 
1
3 
1
4 
2
10 2 
0

1
3 
1
3 
1
4 
3
10 9 2 
0

2
4 9 
1
2 
1
4 
2
3 1 
0

2
4 7 
2
6 5 
1
4 
2
7 1 
0

3
5 14 10 
...

result:

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