2020牛客暑期多校训练营(第八场)A.All-Star Game

一个球迷可以喜欢多个球员,动态的删除或者加入球员,求每个时间段,最少需要派出多少球员满足所有球迷要求。

这里有个阅读理解:A喜欢C,B喜欢C,B也喜欢D,此时A也会喜欢D,所以此时只要派出一个D即可。

  • 答案很显然就是所有联通块的大小,(注意需要-单独孤立的球员)
  • 如果不成立,即出现孤立的球迷。

涉及修改,可以线段树分治,在可行区间打上标记。

联通块使用并茶几维护三个值$[联通快大小,孤立的球员,孤立的球迷]$。很好维护,然后暴力撤销即可。

代码
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177


#include <bits/stdc++.h>
using namespace std;
typedef long long ll;
#define pii pair<int, int>
#define mk make_pair
const int N = 1e6 + 10;
const int mod = 1e9 + 7;

int read()
{
int x = 0, f = 1;
char c = getchar();
while (c < '0' || c > '9')
{
if (c == '-')
f = -1;
c = getchar();
}
while (c >= '0' && c <= '9')
x = (x << 1) + (x << 3) + c - '0', c = getchar();
return x * f;
}

struct Dsu
{
int fa[N], d[N], v[N];
int cn, cm, res;
struct Tmp
{
int x, y, add;
int cx, cy, r;
};
stack<Tmp> s;
int find(int x)
{
while (x != fa[x])
x = fa[x];
return x;
}
void init(int n)
{
cn = cm = 0;
res = n;
while (!s.empty())
s.pop();
for (int i = 1; i <= n; i++)
fa[i] = i, d[i] = 0;
}
void merge(int x, int y)
{
int xx = find(x);
int yy = find(y);

if (d[xx] > d[yy])
swap(xx, yy);
s.push((Tmp){xx, yy, d[xx] == d[yy], (v[x] == 0 ? x : 0), (v[y] == 0 ? y : 0), res});
if (xx == yy)
return;
res--;
if (!v[x])
cm++;
if (!v[y])
cn++;
v[x] = v[y] = 1;
fa[xx] = yy;
d[yy] += (d[xx] == d[yy]);
}
void ret(int o)
{
while (s.size() > o)
{
Tmp x = s.top();
fa[x.x] = x.x;
d[x.y] -= x.add;
if (x.cx)
v[x.cx] = 0, cm--;
if (x.cy)
v[x.cy] = 0, cn--;
res = x.r;
s.pop();
}
}
} d;
vector<pii> e[N << 2];
int n, m, k;
int ans[N];
void insert(int pos, int ql, int qr, int l, int r, pii o)
{
if (ql <= l && r <= qr)
{
e[pos].push_back(o);
return;
}
int mid = (l + r) >> 1;
if (ql <= mid)
insert(pos << 1, ql, qr, l, mid, o);
if (qr > mid)
insert(pos << 1 | 1, ql, qr, mid + 1, r, o);
}

void solve(int pos, int l, int r)
{
int o = d.s.size();
bool flag = 1;

for (pii i : e[pos])
{

d.merge(i.first, i.second + m);
}
int mid = (l + r) >> 1;

if (l == r)
{
int res = 0;

if (d.cm < m)
printf("-1\n");
else
{
printf("%d\n", d.res - (n - d.cn));
}
}
else
solve(pos << 1, l, mid), solve(pos << 1 | 1, mid + 1, r);

d.ret(o);
}
map<pii, int> mp;
pii c[N];
int p[N];
vector<pii> ask;
int main()
{
n = read(), m = read(), k = read();
d.init(n + m);
int cnt = 0;
for (int i = 1; i <= n; i++)
{
int k = read();
for (int j = 1; j <= k; j++)
{
int x = read();
++cnt;
mp[mk(x, i)] = cnt;
c[cnt] = mk(x, i);
p[cnt] = 1;
}
}
for (int i = 1; i <= k; i++)
{
int x = read(), y = read();
if (mp[mk(x, y)] == 0)
{
++cnt;
mp[mk(x, y)] = cnt;
c[cnt] = mk(x, y);
p[cnt] = i;
}
else

{
int o = mp[mk(x, y)];
if (i - 1 >= p[o])
insert(1, p[o], i - 1, 1, k, c[o]);
p[o] = 0;
mp[mk(x, y)] = 0;
}
}

for (int i = 1; i <= cnt; i++)
if (p[i])
insert(1, p[i], k, 1, k, c[i]);
solve(1, 1, k);
}