QOJ.ac

QOJ

ID题目提交者结果用时内存语言文件大小提交时间测评时间
#745381#6307. Chase Game 2dezex#WA 7ms3656kbC++201.6kb2024-11-14 09:34:322024-11-14 09:34:32

Judging History

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

  • [2024-11-14 09:34:32]
  • 评测
  • 测评结果:WA
  • 用时:7ms
  • 内存:3656kb
  • [2024-11-14 09:34:32]
  • 提交

answer

#include <bits/stdc++.h>

using namespace std;

const int N = 1e5 + 10;

vector<int> G[N];
int cnt_leaf[N], direct_leaf[N];

void init(int n);
void dfs(int u, int par);
int solve(int n);

int main()
{
    ios::sync_with_stdio(false), cin.tie(0), cout.tie(0);
    int T, n;
    cin >> T;
    while (T--)
    {
        cin >> n;
        init(n);
        cout << solve(n) << "\n";
    }
    return 0;
}

void init(int n)
{
    for (int i = 1; i <= n; i++)
    {
        G[i].clear();
        cnt_leaf[i] = direct_leaf[i] = 0;
    }
    int u, v;
    for (int i = 1; i < n; i++)
    {
        cin >> u >> v;
        G[u].push_back(v);
        G[v].push_back(u);
    }
}

int solve(int n)
{
    int root = 0;
    for (int i = 1; i <= n; i++)
        if (G[i].size() != 1)
        {
            root = i;
            break;
        }
    if (root == 0 || G[root].size() == n - 1)
        return -1;
    dfs(root, root);
    int tmp1 = cnt_leaf[root], tmp2 = 0;
    for (int i = 1; i <= n; i++)
    {
        // cout << i << " " << cnt_leaf[i] << " " << direct_leaf[i] << endl;
        tmp2 = max(tmp2, direct_leaf[i]);
    }
    // cout << tmp1 << " " << tmp2 << endl;
    tmp1 -= tmp2;
    if (tmp1 <= tmp2)
        return tmp2;
    return (tmp1 + tmp2) / 2;
}

void dfs(int u, int par)
{
    if (G[u].size() == 1)
    {
        cnt_leaf[u] = 1;
        return;
    }
    for (auto v : G[u])
        if (v != par)
        {
            dfs(v, u);
            cnt_leaf[u] += cnt_leaf[v];
            if (G[v].size() == 1)
                direct_leaf[u]++;
        }
}

详细

Test #1:

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

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: 4ms
memory: 3656kb

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: 7ms
memory: 3588kb

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

result:

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