QOJ.ac

QOJ

ID题目提交者结果用时内存语言文件大小提交时间测评时间
#100027#6307. Chase Game 2Social_Pointer#WA 196ms5572kbC++201.8kb2023-04-24 14:27:012023-04-24 14:27:09

Judging History

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

  • [2023-08-10 23:21:45]
  • System Update: QOJ starts to keep a history of the judgings of all the submissions.
  • [2023-04-24 14:27:09]
  • 评测
  • 测评结果:WA
  • 用时:196ms
  • 内存:5572kb
  • [2023-04-24 14:27:01]
  • 提交

answer

#include <iostream>
#include <cstring>
#include <algorithm>

using namespace std;

const int N = 100010, M = 200100;

int e[M], ne[M], h[N], idx;
int md[N], d[N], p[N];
int res;
int n;
int v[N];

void insert(int u, int v) {
    e[idx] = v, ne[idx] = h[u], h[u] = idx++;
}

void dfs(int u, int fa) {
    int d1, d2;
    d1 = d2 = 0;
    p[u] = fa;
    for (int i = h[u]; ~i; i = ne[i]) {
        int j = e[i];
        if (j == fa) continue;
        dfs(j, u);
        int d = md[j] + 1;
        md[u] = max(md[u], d);
        if (d >= d1) d2 = d1, d1 = d;
        else if (d > d2) d2 = d;
    }
    res = max(res, d1 + d2);
}

int main() {
    int T;
    cin >> T;
    while (T--) {
        cin >> n;
        memset(h, -1, sizeof h);
        for (int i = 1; i <= n; i++) {
            h[i] = -1;
            d[i] = 0;
            md[i] = 0;
            v[i] = 0;
        }
        idx = res = 0;
        for (int i = 1; i < n; i++) {
            int u, v;
            cin >> u >> v;
            insert(u, v);
            insert(v, u);
            d[u]++, d[v]++;
        }
        dfs(1, -1);
        if (d[1] == 1) v[1]++;
        for (int i = 2; i <= n; i++) {
            if (d[i] == 1) {
                v[p[i]]++;
            }
        }
        int cnt = 0;
        sort(v + 1, v + n + 1);
        int l = 1, r = n;
        while (l <= r) {
            if (l == r) {
                cnt += v[l];
                break;
            }
            if (v[l] <= v[r]) {
                cnt += v[l];
                v[r] -= v[l++];
            } else {
                cnt += v[r];
                v[l] -= v[r--];
            }
        }
        if (res < 3) cout << -1 << '\n';
        else cout << cnt << '\n';
    }
    return 0;
}

詳細信息

Test #1:

score: 100
Accepted
time: 2ms
memory: 3716kb

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

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

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

result:

wrong answer 30th numbers differ - expected: '3', found: '4'