0
1
mirror of https://git.sb/baoshuo/OI-codes.git synced 2024-09-16 19:45:24 +00:00

1917. [CTSC2010] 星际旅行

https://hydro.ac/d/bzoj/record/63d65ea31e112398d133043a
This commit is contained in:
Baoshuo Ren 2023-01-29 19:55:20 +08:00
parent f5ab5fa54a
commit b44484d52c
Signed by: baoshuo
GPG Key ID: 00CB9680AB29F51A
21 changed files with 144 additions and 0 deletions

84
BZOJ/1917/1917.cpp Normal file
View File

@ -0,0 +1,84 @@
#include <iostream>
#include <vector>
using std::cin;
using std::cout;
const char endl = '\n';
const int N = 50005;
int n, h[N], son[N], ans[N], res;
std::vector<int> g[N];
void dfs1(int u, int f) {
for (int v : g[u]) {
if (v == f) continue;
dfs1(v, u);
int x = std::min(h[u], h[v]);
h[u] -= x, h[v] -= x;
res += x * 2;
if (h[v]) son[u] = v;
}
}
void dfs2(int u, int f) {
ans[u] = res;
for (int v : g[u]) {
if (v == f) continue;
if (h[u]) {
h[u]--, res++;
dfs2(v, u);
h[u]++, res--;
} else if (son[v]) {
h[son[v]]--, res++;
dfs2(v, u);
h[son[v]]++, res--;
} else {
h[v]++, res--;
dfs2(v, u);
h[v]--, res++;
}
}
}
int main() {
std::ios::sync_with_stdio(false);
cin.tie(nullptr);
cin >> n;
for (int i = 1; i <= n; i++) {
cin >> h[i];
}
for (int i = 1, x, y; i < n; i++) {
cin >> x >> y;
h[++x]--, h[++y]--;
g[x].emplace_back(y);
g[y].emplace_back(x);
res += 2;
}
dfs1(1, 0);
dfs2(1, 0);
for (int i = 1; i <= n; i++) {
cout << ans[i] << endl;
}
return 0;
}

BIN
BZOJ/1917/data/1.in (Stored with Git LFS) Normal file

Binary file not shown.

BIN
BZOJ/1917/data/1.out (Stored with Git LFS) Normal file

Binary file not shown.

BIN
BZOJ/1917/data/10.in (Stored with Git LFS) Normal file

Binary file not shown.

BIN
BZOJ/1917/data/10.out (Stored with Git LFS) Normal file

Binary file not shown.

BIN
BZOJ/1917/data/2.in (Stored with Git LFS) Normal file

Binary file not shown.

BIN
BZOJ/1917/data/2.out (Stored with Git LFS) Normal file

Binary file not shown.

BIN
BZOJ/1917/data/3.in (Stored with Git LFS) Normal file

Binary file not shown.

BIN
BZOJ/1917/data/3.out (Stored with Git LFS) Normal file

Binary file not shown.

BIN
BZOJ/1917/data/4.in (Stored with Git LFS) Normal file

Binary file not shown.

BIN
BZOJ/1917/data/4.out (Stored with Git LFS) Normal file

Binary file not shown.

BIN
BZOJ/1917/data/5.in (Stored with Git LFS) Normal file

Binary file not shown.

BIN
BZOJ/1917/data/5.out (Stored with Git LFS) Normal file

Binary file not shown.

BIN
BZOJ/1917/data/6.in (Stored with Git LFS) Normal file

Binary file not shown.

BIN
BZOJ/1917/data/6.out (Stored with Git LFS) Normal file

Binary file not shown.

BIN
BZOJ/1917/data/7.in (Stored with Git LFS) Normal file

Binary file not shown.

BIN
BZOJ/1917/data/7.out (Stored with Git LFS) Normal file

Binary file not shown.

BIN
BZOJ/1917/data/8.in (Stored with Git LFS) Normal file

Binary file not shown.

BIN
BZOJ/1917/data/8.out (Stored with Git LFS) Normal file

Binary file not shown.

BIN
BZOJ/1917/data/9.in (Stored with Git LFS) Normal file

Binary file not shown.

BIN
BZOJ/1917/data/9.out (Stored with Git LFS) Normal file

Binary file not shown.