QOJ.ac

QOJ

ID题目提交者结果用时内存语言文件大小提交时间测评时间
#47400#2228. Bread PittovarischWA 6ms17772kbC++1.5kb2022-09-09 03:30:452022-09-09 03:30:47

Judging History

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

  • [2023-08-10 23:21:45]
  • System Update: QOJ starts to keep a history of the judgings of all the submissions.
  • [2022-09-09 03:30:47]
  • 评测
  • 测评结果:WA
  • 用时:6ms
  • 内存:17772kb
  • [2022-09-09 03:30:45]
  • 提交

answer

#include <iostream>
#include <cstdio>
#include <cstdlib>
#include <algorithm>
#include <cmath>
#include <vector>
#include <set>
#include <map>
#include <unordered_set>
#include <unordered_map>
#include <queue>
#include <ctime>
#include <cassert>
#include <complex>
#include <string>
#include <cstring>
#include <chrono>
#include <random>
#include <bitset>
#include <array>

using namespace std;
/* *
 *
 * Too many mind, no mind.
 *
 * */
const int maxn  = 3e5 + 10;
int par[maxn], children[maxn], idx[maxn];
vector <int> tree[maxn], leaf[maxn], nodes;
void dfs(int u, int prev = 0) {
	for (int& v: tree[u]) {
		if (v == prev) continue;
		dfs(v, u);
	}
	if (u && tree[u].size() <= 1) {
		nodes.push_back(prev ? prev : u);
		leaf[prev ? prev : u].push_back(u);
	}
}
int main() {
	ios_base::sync_with_stdio(0), cin.tie(0), cout.tie(0);
	//freopen("input.txt", "r", stdin);
	//freopen("output.txt", "w", stdout);
	int n, q; cin >> n >> q;
	for (int i = 1; i < n; i++) {
		cin >> par[i];
		tree[i].push_back(par[i]);
		tree[par[i]].push_back(i);
		children[par[i]]++;

	}
	dfs(0);
	nodes.resize(unique(nodes.begin(), nodes.end()) - nodes.begin());

	bool surface = false;
	for (int i = 0; i < q; i++) {
		if (nodes.empty()) {
			cout << 0 << '\n';
			continue;
		}
		int u = nodes[i % nodes.size()];
		cout << (surface ? 0 : leaf[u][idx[u]]) << '\n';
		//if (leaf[u][idx[u]] == 0) surface = true;

		idx[u] = (idx[u] + 1) % leaf[u].size();
		//if (children[u] == 1) leaf[u][0] = par[leaf[u][0]];
	}
	return 0;
}

詳細信息

Test #1:

score: 100
Accepted
time: 4ms
memory: 17696kb

input:

1 1


output:

0

result:

ok single line: '0'

Test #2:

score: 0
Accepted
time: 1ms
memory: 17608kb

input:

2 2
0

output:

1
1

result:

ok 2 lines

Test #3:

score: 0
Accepted
time: 4ms
memory: 17684kb

input:

3 3
0 1

output:

2
2
2

result:

ok 3 lines

Test #4:

score: 0
Accepted
time: 4ms
memory: 17708kb

input:

4 4
0 1 1

output:

2
3
2
3

result:

ok 4 lines

Test #5:

score: 0
Accepted
time: 6ms
memory: 17772kb

input:

5 5
0 0 0 1

output:

4
2
3
4
2

result:

ok 5 lines

Test #6:

score: 0
Accepted
time: 2ms
memory: 17644kb

input:

6 6
0 1 2 3 3

output:

4
5
4
5
4
5

result:

ok 6 lines

Test #7:

score: 0
Accepted
time: 2ms
memory: 17688kb

input:

7 7
0 0 0 0 1 5

output:

6
2
3
4
6
2
3

result:

ok 7 lines

Test #8:

score: -100
Wrong Answer
time: 4ms
memory: 17644kb

input:

8 8
0 1 0 2 0 2 6

output:

4
7
3
5
4
7
3
5

result:

wrong answer 2nd lines differ - expected: '3', found: '7'