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

1015. [JSOI2008]星球大战starwar

https://hydro.ac/d/bzoj/record/6322eed632ae6c3198cc9fa0
This commit is contained in:
Baoshuo Ren 2022-09-15 17:23:06 +08:00
parent 5ef3680762
commit 1a5233b4cb
Signed by: baoshuo
GPG Key ID: 00CB9680AB29F51A
21 changed files with 144 additions and 0 deletions

84
BZOJ/1015/1015.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 = 4e5 + 5;
int n, m, k, a[N], fa[N], ans[N];
bool vis[N], del[N];
std::vector<int> g[N];
int find(int x) {
return fa[x] == x ? x : fa[x] = find(fa[x]);
}
int main() {
std::ios::sync_with_stdio(false);
cin.tie(nullptr);
cin >> n >> m;
for (int i = 0, x, y; i < m; i++) {
cin >> x >> y;
g[x].push_back(y);
g[y].push_back(x);
}
for (int i = 0; i < n; i++) fa[i] = i;
cin >> k;
for (int i = 1; i <= k; i++) {
cin >> a[i];
del[a[i]] = true;
}
for (int i = 0; i < n; i++) {
if (!del[i]) {
for (int v : g[i]) {
if (!del[v]) {
int f1 = find(i),
f2 = find(v);
fa[f1] = f2;
}
}
}
}
int cnt = 0;
for (int i = 0; i < n; i++) {
if (fa[i] == i && !del[i]) cnt++;
}
ans[k] = cnt;
for (int i = k; i; i--) {
del[a[i]] = false;
cnt++;
for (int v : g[a[i]]) {
if (!del[v]) {
int f1 = find(a[i]),
f2 = find(v);
if (f1 != f2) {
fa[f1] = f2;
cnt--;
}
}
}
ans[i - 1] = cnt;
}
for (int i = 0; i <= k; i++) {
cout << ans[i] << endl;
}
return 0;
}

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

Binary file not shown.

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

Binary file not shown.

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

Binary file not shown.

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

Binary file not shown.

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

Binary file not shown.

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

Binary file not shown.

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

Binary file not shown.

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

Binary file not shown.

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

Binary file not shown.

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

Binary file not shown.

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

Binary file not shown.

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

Binary file not shown.

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

Binary file not shown.

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

Binary file not shown.

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

Binary file not shown.

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

Binary file not shown.

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

Binary file not shown.

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

Binary file not shown.

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

Binary file not shown.

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

Binary file not shown.