QOJ.ac

QOJ

IDProblemSubmitterResultTimeMemoryLanguageFile sizeSubmit timeJudge time
#594195#6307. Chase Game 2shiqiaqiaya#WA 12ms3828kbC++201.6kb2024-09-27 20:10:192024-09-27 20:10:21

Judging History

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

  • [2024-09-27 20:10:21]
  • 评测
  • 测评结果:WA
  • 用时:12ms
  • 内存:3828kb
  • [2024-09-27 20:10:19]
  • 提交

answer

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

void QAQ() {
    int n, cnt = 0;
    cin >> n;

    vector adj(n + 1, vector<int>());

    for (int i = 1; i < n; i++) {
        int u, v;
        cin >> u >> v;
        adj[u].emplace_back(v), adj[v].emplace_back(u);
    }

    vector<array<int, 2>> d0(n + 1), d1(n + 1);
    vector<int> ans(n + 1);

    auto dfs0 = [&](auto && self, int u, int fa) -> void {
        for (auto & v : adj[u]) {
            if (v == fa) continue;
            self(self, v, u);
            if (d0[v][0] >= d0[u][0]) {
                d1[u] = d0[u];
                d0[u] = {d0[v][0] + 1, v};
            } else if (d0[v][0] >= d1[u][0]) {
                d1[u] = {d0[v][0] + 1, v};
            }
        }
    };

    dfs0(dfs0, 1, 0);

    auto dfs = [&](auto && self, int u, int fa, int md) -> void {
        ans[u] = max(d0[u][0], md);

        if(adj[u].size() == 1) {
            if (cnt != -1) {
                cnt++;
                if (ans[u] <= 2) {
                    cnt = -1;
                }
            }
        }

        for (auto &v : adj[u]) {
            if (v == fa) continue;
            self(self, v, u, (v == d0[u][1] ? max(md, d1[u][0]) : max(md, d0[u][0])) + 1);
        }
    };

    dfs(dfs, 1, 0, 0);

    if (cnt == -1) {
        cout << "-1\n";
    } else {
        cout << cnt - 1 << "\n";
    }
}

signed main() {
    ios::sync_with_stdio(false);
    cin.tie(0);
    
    int t = 1;
    cin >> t;

    while (t--) {
        QAQ();
    }
    return 0;
}

Details

Tip: Click on the bar to expand more detailed information

Test #1:

score: 100
Accepted
time: 1ms
memory: 3532kb

input:

4
2
1 2
4
1 2
2 3
3 4
4
1 2
2 3
2 4
5
1 2
2 3
3 4
3 5

output:

-1
1
-1
2

result:

ok 4 number(s): "-1 1 -1 2"

Test #2:

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

input:

10000
4
1 2
1 3
3 4
4
1 2
1 3
1 4
4
1 2
2 3
1 4
5
1 2
2 3
1 4
4 5
5
1 2
2 3
3 4
4 5
4
1 2
2 3
2 4
5
1 2
1 3
2 4
2 5
4
1 2
2 3
1 4
5
1 2
1 3
2 4
1 5
5
1 2
2 3
3 4
2 5
5
1 2
1 3
2 4
2 5
4
1 2
1 3
3 4
5
1 2
1 3
3 4
1 5
4
1 2
1 3
1 4
5
1 2
1 3
3 4
3 5
5
1 2
2 3
3 4
3 5
4
1 2
1 3
2 4
5
1 2
2 3
2 4
3 5
5
...

output:

1
-1
1
1
1
-1
2
1
2
2
2
1
2
-1
2
2
1
2
2
1
1
1
-1
2
2
2
1
-1
1
1
2
1
1
-1
1
2
1
1
1
-1
1
1
2
2
2
1
1
1
-1
1
2
1
1
2
1
2
1
1
2
-1
-1
-1
2
2
2
1
1
1
2
2
2
-1
1
2
-1
1
1
-1
2
-1
-1
1
2
2
2
1
1
1
1
1
1
1
1
1
2
-1
1
1
2
-1
2
1
1
1
-1
2
-1
1
-1
-1
2
-1
2
1
2
2
1
1
1
1
2
1
1
1
1
-1
2
1
2
1
1
1
1
1
1
1
2
-1...

result:

ok 10000 numbers

Test #3:

score: -100
Wrong Answer
time: 12ms
memory: 3796kb

input:

10000
9
1 2
2 3
3 4
4 5
1 6
6 7
5 8
7 9
9
1 2
2 3
2 4
1 5
2 6
4 7
6 8
1 9
9
1 2
2 3
1 4
4 5
5 6
4 7
2 8
1 9
10
1 2
2 3
1 4
3 5
3 6
2 7
6 8
6 9
6 10
10
1 2
1 3
3 4
2 5
1 6
5 7
4 8
2 9
7 10
10
1 2
2 3
2 4
1 5
3 6
6 7
5 8
4 9
9 10
9
1 2
2 3
2 4
1 5
3 6
2 7
1 8
2 9
9
1 2
1 3
2 4
1 5
3 6
3 7
7 8
8 9
10
1...

output:

1
4
4
5
3
2
5
3
4
3
4
3
4
3
4
4
4
3
4
3
5
3
4
4
3
3
4
5
4
5
4
4
3
5
4
5
5
4
5
4
3
4
4
4
4
5
2
5
4
4
4
5
4
2
5
2
4
3
3
4
4
6
4
5
4
4
3
3
4
2
3
3
5
4
3
4
5
3
5
4
4
5
3
5
3
3
4
5
5
4
3
4
4
3
4
5
4
4
4
3
4
3
3
5
5
4
4
2
3
5
3
4
6
3
6
4
2
4
4
3
5
3
4
5
4
4
3
2
5
5
4
3
4
4
4
4
5
4
3
5
4
3
3
6
4
5
4
4
3
4
...

result:

wrong answer 2nd numbers differ - expected: '3', found: '4'