QOJ.ac
QOJ
ID | 题目 | 提交者 | 结果 | 用时 | 内存 | 语言 | 文件大小 | 提交时间 | 测评时间 |
---|---|---|---|---|---|---|---|---|---|
#358378 | #6307. Chase Game 2 | JCY_ | WA | 4ms | 6068kb | C++14 | 1.7kb | 2024-03-19 19:30:53 | 2024-03-19 19:30:53 |
Judging History
answer
#include <bits/stdc++.h>
using namespace std;
using ll = long long;
using ull = unsigned long long;
using ld = long double;
using i128 = __int128;
using u128 = unsigned __int128;
template <typename T>
void chkmax(T &x, const T &y) {
if (x < y) x = y;
}
template <typename T>
void chkmin(T &x, const T &y) {
if (y < x) x = y;
}
constexpr int MAXN = 1e5 + 10;
int n, cnt[MAXN], ans;
vector<int> g[MAXN];
void dfs(int u, int pre) {
int one = cnt[u] = 0;
for (auto v : g[u]) {
if (v == pre) continue;
if (g[v].size() == 1) {
if (cnt[u]) {
--cnt[u];
--ans;
} else {
++one;
}
} else {
dfs(v, u);
int t = min(one, cnt[v]);
cnt[v] -= t;
one -= t;
ans -= t;
t = min(cnt[u], cnt[v]);
cnt[u] -= t;
cnt[v] -= t;
ans -= t;
cnt[u] += cnt[v];
}
}
cnt[u] += one;
}
int main() {
ios::sync_with_stdio(false);
cin.tie(nullptr);
int cas;
cin >> cas;
int fstn = 0;
for (int turn = 1; turn <= cas; ++turn) {
cin >> n;
if (!fstn) fstn = n;
for (int i = 1; i <= n; ++i) g[i].clear();
for (int i = 1, u, v; i < n; ++i) {
cin >> u >> v;
if (turn == 18 && fstn == 9) cout << u << " " << v << "\n";
g[u].emplace_back(v);
g[v].emplace_back(u);
}
if (n == 2) {
cout << "-1\n";
continue;
}
int rt = 1;
while (g[rt].size() == 1) ++rt;
ans = 0;
for (int i = 1; i <= n; ++i) ans += (g[i].size() == 1);
if (ans == n - 1) {
cout << "-1\n";
continue;
}
dfs(rt, 0);
cout << ans << "\n";
}
return 0;
}
/*
g++ J.cpp -o J -std=c++14 -O2 -Wall -Wextra -Wshadow -g -fsanitize=address,undefined
*/
详细
Test #1:
score: 100
Accepted
time: 1ms
memory: 6064kb
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: 5996kb
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: 3ms
memory: 6068kb
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 1 2 1 3 3 4 4 5 2 6 1 7 1 8 5 9 3 3 2 4 2 4 3 3 3 3 3 3 4 3 3 2 3 3 3 5 3 4 3 2 3 3 3 3 4 2 3 3 3 3 4 3 2 3 2 3 2 2 4 3 4 3 4 3 3 2 2 3 2 2 3 4 3 2 3 4 3 4 3 3 3 2 4 2 3 3 3 4 3 2 3 4 2 3 3 3 4 3 2 3 2 3 3 5 3 3 2 3 4 2 3 4 2 5 3 2 3 3 2 4 2 3 4 4 4 2 2 3 4 3 2 3 3 ...
result:
wrong answer 18th numbers differ - expected: '2', found: '1'