QOJ.ac

QOJ

ID题目提交者结果用时内存语言文件大小提交时间测评时间
#190120#6634. Central SubsetluanmengleiRE 9ms3636kbC++17996b2023-09-28 12:11:402023-09-28 12:11:41

Judging History

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

  • [2023-09-28 12:11:41]
  • 评测
  • 测评结果:RE
  • 用时:9ms
  • 内存:3636kb
  • [2023-09-28 12:11:40]
  • 提交

answer

#include <bits/stdc++.h>
using namespace std;

const int N = 25 + 10;
int n, m, fa[N], dep[N], p[N], B, f[N];
bool v[N];
vector<int> G[N];

void dfs(int x) {
	f[x] = 0;
	bool flag = false;
	for (int y : G[x]) if (!dep[y]) {
		dep[y] = dep[x] + 1, fa[y] = x;
		dfs(y);
		f[x] = max(f[x], f[y] + 1);
		flag |= v[y];
	}
	if (flag)
		f[x] = 0;
	if (f[x] >= B - 1) {
		v[x] = true;
		f[x] = 0;
	}
}

void solve() {
	cin >> n >> m;
	for (int i = 1; i <= n; i ++)
		v[i] = false, G[i].clear(), fa[i] = 0, dep[i] = 0;
	B = ceil(sqrt(n));
	for (int i = 1, x, y; i <= m; i ++)
		cin >> x >> y, G[x].push_back(y), G[y].push_back(x);
	dep[1] = 1;
	dfs(1);
	v[1] = true;
	vector<int> ans;
	for (int i = 1; i <= n; i ++) if (v[i])
		ans.push_back(i);
	cout << ans.size() << "\n";
	for (int x : ans)
		cout << x << " ";
	cout << "\n";
}

int main() {
	ios::sync_with_stdio(false), cin.tie(0), cout.tie(0);
	int tt; cin >> tt;
	while (tt --) solve();
	return 0;
}

詳細信息

Test #1:

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

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

result:

ok correct (2 test cases)

Test #2:

score: 0
Accepted
time: 9ms
memory: 3636kb

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:

4
1 4 8 12 
2
1 2 
2
1 3 
1
1 
1
1 
3
1 4 7 
1
1 
2
1 5 
3
1 4 12 
1
1 
4
1 6 11 16 
2
1 4 
2
1 3 
2
1 8 
1
1 
4
1 4 8 12 
2
1 2 
1
1 
2
1 4 
1
1 
2
1 3 
2
1 4 
2
1 5 
3
1 2 8 
1
1 
4
1 4 8 12 
2
1 2 
3
1 2 6 
2
1 2 
1
1 
5
1 2 7 12 17 
2
1 3 
2
1 5 
3
1 6 10 
1
1 
2
1 4 
2
1 3 
2
1 4 
4
1 2 9 10 
1...

result:

ok correct (10000 test cases)

Test #3:

score: -100
Runtime Error

input:

100
2000 1999
529 528
885 884
1221 1222
375 374
245 244
758 757
711 710
1521 1522
1875 1874
749 750
823 822
1959 1958
1767 1766
155 154
631 632
825 824
1330 1331
457 456
1344 1343
1817 1818
413 414
582 583
1828 1827
1335 1336
654 655
162 161
1668 1667
1966 1967
1472 1471
1185 1184
518 517
1509 1510
...

output:


result: