QOJ.ac

QOJ

ID题目提交者结果用时内存语言文件大小提交时间测评时间
#100036#6307. Chase Game 2qwq7#WA 0ms5528kbC++201.9kb2023-04-24 14:52:452023-04-24 14:52:46

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:52:46]
  • 评测
  • 测评结果:WA
  • 用时:0ms
  • 内存:5528kb
  • [2023-04-24 14:52:45]
  • 提交

answer

#include <iostream>
#include <cstring>
#include <set>

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;
        for (int i = 1; i <= n; i++) {
            h[i] = -1;
            d[i] = 0;
            md[i] = 0;
            v[i] = 0;
            p[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]++;
        }
        int root = 1;
        while (d[root] == 1 && root < n) root++;
        if (d[root] == 1) {
            cout << "-1\n";
            continue;
        }
        dfs(root, -1);
        multiset<int> S;
        for (int i = 1; i <= n; i++) {
            if (d[i] == 1) {
                v[p[i]]++;
            }
        }
        for (int i = 1; i <= n; i++) {
            S.insert(-v[i]);
        }
        int cnt = 0;
        while (S.size()) {
            int a = *S.begin();
            S.erase(S.find(a));
            if (S.empty()) {
                cnt -= a;
                break;
            }
            int b = *S.begin();
            S.erase(S.find(b));
            cnt -= max(a, b);
            S.insert(-abs(a - b));
        }
        cout << cnt;
    }
    return 0;
}

詳細信息

Test #1:

score: 0
Wrong Answer
time: 0ms
memory: 5528kb

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
132

result:

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