QOJ.ac
QOJ
ID | Problem | Submitter | Result | Time | Memory | Language | File size | Submit time | Judge time |
---|---|---|---|---|---|---|---|---|---|
#658333 | #7755. Game on a Forest | sleigh | WA | 2ms | 6916kb | C++20 | 2.5kb | 2024-10-19 16:39:06 | 2024-10-19 16:39:09 |
Judging History
answer
#include <bits/stdc++.h>
using namespace std;
using ll = long long;
constexpr int N = 1e5 + 10;
//////////////////////////////////////
struct {
int to, next;
} edge[N << 1];;
int head[N];
int cnt;
void add(const int u, const int v) {
edge[++cnt] = {v, head[u]};
head[u] = cnt;
}
//////////////////////////////////////
struct node {
int fa, tree, sz = 1;
int sg = 0;
int tot_sg;
};
node nodes[N];
void dfs(const int tree, const int fa, const int now) {
nodes[now].fa = fa;
nodes[now].tree = tree;
for (int i = head[now]; i; i = edge[i].next) {
const int to = edge[i].to;
if (to == fa) continue;
dfs(tree, now, to);
nodes[now].sz += nodes[to].sz;
}
}
void dfs2(const int fa, const int now) {
nodes[now].sg = ((nodes[now].sz & 1) ? 1 : 2);
nodes[now].tot_sg = nodes[now].sg;
for (int i = head[now]; i; i = edge[i].next) {
const int to = edge[i].to;
if (to == fa) continue;
dfs2(now, to);
nodes[now].tot_sg ^= nodes[to].tot_sg;
}
}
//////////////////////////////////////
int main() {
int n, m;
cin >> n >> m;
for (int i = 0; i < m; i++) {
int u, v;
cin >> u >> v;
add(u, v);
add(v, u);
}
for (int i = 1; i <= n; i++) {
if (nodes[i].tree == 0) {
dfs(i, i, i);
dfs2(i, i);
}
}
int sg = 0;
for (int i = 1; i <= n; i++) {
if (nodes[i].tree == i) {
sg ^= nodes[i].tot_sg;
}
}
int ans = 0;
std::function<void(int, int)> dfs3 = [&](const int fa, const int now) {
const auto sz = nodes[nodes[now].tree].sz - nodes[now].sz;
int nsg = 0;
if (sz > 0) {
if (sz & 1) nsg = 1;
else nsg = 2;
}
// 边
if (now != fa) {
if ((sg ^ nsg ^ nodes[now].sg) == 0) {
ans++;
}
}
// 点
for (int j = head[now]; j; j = edge[j].next) {
int to = edge[j].to;
if (to == fa) continue;
nsg ^= nodes[to].sg;
dfs3(now, to);
}
if ((sg ^ nsg) == 0) {
ans++;
}
};
for (int i = 1; i <= n; i++) {
if (nodes[i].tree == i) {
sg ^= nodes[i].tot_sg;
dfs3(i, i);
sg ^= nodes[i].tot_sg;
}
}
cout << ans;
}
Details
Tip: Click on the bar to expand more detailed information
Test #1:
score: 100
Accepted
time: 1ms
memory: 6292kb
input:
3 1 1 2
output:
2
result:
ok 1 number(s): "2"
Test #2:
score: 0
Accepted
time: 1ms
memory: 6392kb
input:
4 3 1 2 2 3 3 4
output:
3
result:
ok 1 number(s): "3"
Test #3:
score: 0
Accepted
time: 0ms
memory: 6916kb
input:
100000 1 4647 17816
output:
1
result:
ok 1 number(s): "1"
Test #4:
score: 0
Accepted
time: 2ms
memory: 6192kb
input:
100000 2 64075 72287 63658 66936
output:
0
result:
ok 1 number(s): "0"
Test #5:
score: 0
Accepted
time: 2ms
memory: 5688kb
input:
100000 3 59930 72281 31689 59132 20469 33165
output:
3
result:
ok 1 number(s): "3"
Test #6:
score: 0
Accepted
time: 2ms
memory: 6564kb
input:
100000 10 20391 78923 27822 80617 21749 25732 12929 79693 42889 52515 59064 99869 29031 41875 4463 17813 13407 42498 19120 20957
output:
0
result:
ok 1 number(s): "0"
Test #7:
score: -100
Wrong Answer
time: 2ms
memory: 5960kb
input:
99999 101 34378 94161 67696 83255 24557 25591 11476 58475 5684 38157 33843 35321 9046 24028 14293 77681 587 42098 9402 27228 6999 13980 27118 84005 3622 8353 13545 51621 16998 63647 32912 53178 15206 15815 56517 86335 5563 93770 153 278 11242 41753 75098 76792 1695 22836 25936 33352 2765 6778 19597 ...
output:
99800
result:
wrong answer 1st numbers differ - expected: '200', found: '99800'