QOJ.ac

QOJ

ID题目提交者结果用时内存语言文件大小提交时间测评时间
#546414#5455. TreeScriptSunlight9WA 19ms3744kbC++201.2kb2024-09-04 01:03:372024-09-04 01:03:37

Judging History

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

  • [2024-09-04 01:03:37]
  • 评测
  • 测评结果:WA
  • 用时:19ms
  • 内存:3744kb
  • [2024-09-04 01:03:37]
  • 提交

answer

#include <bits/stdc++.h>

using namespace std;
using ll = long long;

void solve() {
    int n;
    cin >> n;

    vector<vector<int> > edge(n + 1);
    vector<int> fa(n + 1);
    int st;
    for (int i = 1; i <= n; ++i) {
        int x;
        cin >> x;
        if (x) {
            fa[i] = x;
            edge[x].push_back(i);
        } else {
            st = i;
        }
    }

    vector<int> num(n + 1);
    // int ans = 0;
    auto dfs = [&](auto &&self, int u) -> void {
        int maxx = 0, maxcnt = 0;
        for (auto v : edge[u]) {
            self(self, v);
            if (num[v] > maxx) {
                maxx = num[v];
                maxcnt = 1;
            } else if (num[v] == maxx) {
                maxcnt++;
            }
        }
        if (maxcnt != (int)edge[u].size() || (maxcnt == (int)edge[u].size() && maxcnt == 1)) {
            num[u] = maxx;
        } else {
            num[u] = maxx + 1;
        }
    };

    dfs(dfs, st);

    cout << num[st] << '\n';
}

int main() {
    cin.tie(nullptr) -> sync_with_stdio(false);

    int _;
    cin >> _;
    while (_--) solve();

    return 0;
}
/*
2
3
0 1 2
7
0 1 2 2 1 4 1
*/
/*
1
4
0 1 2 2 
*/
/*
1
7
0 1 1 3 1 5 5
*/

詳細信息

Test #1:

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

input:

2
3
0 1 2
7
0 1 2 2 1 4 1

output:

1
2

result:

ok 2 number(s): "1 2"

Test #2:

score: -100
Wrong Answer
time: 19ms
memory: 3680kb

input:

1000
197
0 1 1 2 1 4 1 5 8 3 5 1 4 7 12 14 4 7 10 9 12 11 16 10 21 19 22 17 25 13 28 9 5 15 26 26 33 25 15 1 35 6 32 17 37 8 19 43 19 27 29 9 30 6 31 27 35 35 37 13 28 38 57 31 38 8 22 14 33 9 18 62 52 37 10 19 22 60 54 12 38 59 64 65 80 82 28 60 85 78 27 25 71 14 52 6 59 14 87 32 33 41 59 41 88 38 ...

output:

3
3
2
3
2
3
3
3
3
2
3
3
3
3
2
3
2
3
2
3
3
2
3
3
3
3
3
2
2
3
2
3
3
3
3
3
3
2
2
3
3
2
3
2
3
3
3
3
3
3
3
2
3
3
3
3
2
3
3
3
3
3
2
3
4
3
2
3
3
3
3
3
3
3
3
3
2
2
3
1
1
3
3
3
3
2
3
3
3
3
3
3
3
3
3
3
3
3
3
3
3
3
3
3
3
3
2
3
3
3
3
3
3
2
3
3
2
2
3
3
3
3
2
3
3
3
3
3
3
3
3
3
3
3
3
2
3
2
2
2
3
3
3
2
3
3
2
2
3
3
...

result:

wrong answer 1st numbers differ - expected: '4', found: '3'