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

#1802. 【2017.3 长乐省选集训 Day7 T1】采蘑菇

https://sjzezoj.com/submission/66112
This commit is contained in:
Baoshuo Ren 2022-12-21 20:18:57 +08:00
parent 98a5b912e9
commit bfd9d2d331
Signed by: baoshuo
GPG Key ID: 00CB9680AB29F51A
22 changed files with 153 additions and 0 deletions

90
S2OJ/1802/1802.cpp Normal file
View File

@ -0,0 +1,90 @@
#include <iostream>
#include <unordered_set>
#include <vector>
using std::cin;
using std::cout;
const char endl = '\n';
const int N = 3e5 + 5;
int n, m, c[N], cnt, dfn[N], siz[N], col_siz[N], tag[N], ans[N];
std::vector<int> g[N], col[N];
std::unordered_set<int> set;
void dfs1(int u, int f) {
dfn[u] = ++cnt;
siz[u] = 1;
for (int v : g[u]) {
if (v == f) continue;
int t = col_siz[c[u]];
dfs1(v, u);
siz[u] += siz[v];
t = siz[v] - (col_siz[c[u]] - t);
col_siz[c[u]] += t;
tag[v] += t;
while (!col[c[u]].empty() && dfn[col[c[u]].back()] > dfn[u]) {
tag[col[c[u]].back()] -= t;
col[c[u]].pop_back();
}
}
col_siz[c[u]]++;
col[c[u]].emplace_back(u);
}
void dfs2(int u, int f) {
ans[u] = ans[f] + tag[u];
for (int v : g[u]) {
if (v == f) continue;
dfs2(v, u);
}
}
int main() {
std::ios::sync_with_stdio(false);
cin.tie(nullptr);
cin >> n;
for (int i = 1; i <= n; i++) {
cin >> c[i];
m = std::max(m, c[i]);
set.emplace(c[i]);
}
for (int i = 1, u, v; i < n; i++) {
cin >> u >> v;
g[u].emplace_back(v);
g[v].emplace_back(u);
}
dfs1(1, 0);
for (int x : set) {
tag[1] += n - col_siz[x];
for (int v : col[x]) {
tag[v] -= n - col_siz[x];
}
}
dfs2(1, 0);
for (int i = 1; i <= n; i++) {
cout << n * set.size() - ans[i] << endl;
}
return 0;
}

BIN
S2OJ/1802/data/mushroom1.in (Stored with Git LFS) Normal file

Binary file not shown.

BIN
S2OJ/1802/data/mushroom1.out (Stored with Git LFS) Normal file

Binary file not shown.

BIN
S2OJ/1802/data/mushroom10.in (Stored with Git LFS) Normal file

Binary file not shown.

BIN
S2OJ/1802/data/mushroom10.out (Stored with Git LFS) Normal file

Binary file not shown.

BIN
S2OJ/1802/data/mushroom2.in (Stored with Git LFS) Normal file

Binary file not shown.

BIN
S2OJ/1802/data/mushroom2.out (Stored with Git LFS) Normal file

Binary file not shown.

BIN
S2OJ/1802/data/mushroom3.in (Stored with Git LFS) Normal file

Binary file not shown.

BIN
S2OJ/1802/data/mushroom3.out (Stored with Git LFS) Normal file

Binary file not shown.

BIN
S2OJ/1802/data/mushroom4.in (Stored with Git LFS) Normal file

Binary file not shown.

BIN
S2OJ/1802/data/mushroom4.out (Stored with Git LFS) Normal file

Binary file not shown.

BIN
S2OJ/1802/data/mushroom5.in (Stored with Git LFS) Normal file

Binary file not shown.

BIN
S2OJ/1802/data/mushroom5.out (Stored with Git LFS) Normal file

Binary file not shown.

BIN
S2OJ/1802/data/mushroom6.in (Stored with Git LFS) Normal file

Binary file not shown.

BIN
S2OJ/1802/data/mushroom6.out (Stored with Git LFS) Normal file

Binary file not shown.

BIN
S2OJ/1802/data/mushroom7.in (Stored with Git LFS) Normal file

Binary file not shown.

BIN
S2OJ/1802/data/mushroom7.out (Stored with Git LFS) Normal file

Binary file not shown.

BIN
S2OJ/1802/data/mushroom8.in (Stored with Git LFS) Normal file

Binary file not shown.

BIN
S2OJ/1802/data/mushroom8.out (Stored with Git LFS) Normal file

Binary file not shown.

BIN
S2OJ/1802/data/mushroom9.in (Stored with Git LFS) Normal file

Binary file not shown.

BIN
S2OJ/1802/data/mushroom9.out (Stored with Git LFS) Normal file

Binary file not shown.

BIN
S2OJ/1802/data/problem.conf (Stored with Git LFS) Normal file

Binary file not shown.