# Facebook Hacker Cup 2020 Round 2 题解
# Problem A - Ca-pasta-ty (opens new window)
# 题目描述
有个区域,每个区域现有人,该区域允许的范围为,问最少移动多少个人,可以让所有区域的人数都处在允许范围呢?
# 题解
贪心。
记录下超出总人数,没有超出上限但可以提供给其他区域的人数,超过下限但还可以接收来自其他区域的人的总数,还需要的人数。
如果,应当优先把部分填充到中,再将剩下的填充到中。
否则,先用部分去填充,再用部分填充。
如果最后还有超出的,或者有未被填充的,则说明无解。
参考代码(C++)
#include <cstdio>
#include <iostream>
#include <vector>
using namespace std;
typedef long long ll;
template <typename T> void read(T &x) {
x = 0;
char c = getchar();
T sig = 1;
for (; !isdigit(c); c = getchar())
if (c == '-')
sig = -1;
for (; isdigit(c); c = getchar())
x = (x << 3) + (x << 1) + c - '0';
x *= sig;
}
ll n, k;
void input(vector<ll> &v) {
ll a, b, c, d;
for (int i = 0; i < k; ++i)
read(v[i]);
read(a), read(b), read(c), read(d);
for (int i = k; i < n; ++i)
v[i] = (a * v[i - 2] + b * v[i - 1] + c) % d;
}
class Solution {
public:
void solve(int case_num) {
printf("Case #%d: ", case_num);
read(n), read(k);
vector<ll> s(n), x(n), y(n);
input(s), input(x), input(y);
ll overflow = 0, extra = 0, vacancy = 0, require = 0;
for (int i = 0; i < n; ++i) {
ll hi = x[i] + y[i];
if (s[i] > hi)
overflow += s[i] - hi;
else
vacancy += min(hi - s[i], y[i]);
if (s[i] > x[i])
extra += min(s[i] - x[i], y[i]);
else
require += x[i] - s[i];
}
if (overflow >= require) {
if (overflow > require + vacancy)
printf("-1\n");
else
printf("%lld\n", overflow);
} else {
if (require > overflow + extra)
printf("-1\n");
else
printf("%lld\n", require);
}
}
};
int main() {
int t;
read(t);
for (int i = 1; i <= t; ++i) {
Solution solution = Solution();
solution.solve(i);
}
}
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
# Problem B - Elimination (opens new window)
# 题目描述
有共个选手进行一对一的比赛。编号大的选手一定不弱于编号小的选手。当任意两个选手比赛时,编号大的那个获胜概率为()。每次比赛后,输的一方立即被淘汰。求每个选手被淘汰(或最终胜利)时总比赛场数的期望。
# 题解
本题待补。
# Problem C - Circular Circles (opens new window)
# 题目描述
有个小环,每个小环有个节点。相邻两个小环之间有一条边相连。也就是说,一共有条边。初始时所有边的权重都为。
现在进行次修改,每次将第条边的权重改为。设第次修改后整个图的最小生成树的权值为,求。
# 题解
本题乍一看有些像HNOI 2010 - 城市建设 (opens new window),但由于本题的图非常特殊,所以并不需要采用那道题里的方法。
考虑这个图的性质。整个图的最小生成树,应当至少包含大环上的条边(否则小环会被分成不连通的几组)。那么,对于每个小环,是怎样的情况呢?
不妨考虑下面这个小环。其中和两个顶点是与其他小环相连的。显然,我们可以去掉小环上的一条边,这样整个小环仍然是连通的。我们能否去掉两条边呢?
两个连接点把这个小环分成了两部分。这两部分的边在图中分别用红色和蓝色标记。我们可以发现,如果去掉两条颜色相同的边,一定会产生孤立点。但是如果去掉两条颜色不同的边,则相当于是在大环上断开了一处,此时只要我们在大环上没有其他断点,就不会产生孤立点。
因此,我们就得到了这题最小生成树的两种构造方法:
- 大环去掉一条边,每个小环去掉一条边
- 某一个小环去掉两条边,其他每个小环去掉一条边
每一次修改后的最小生成树权值,就对应着这两种方法构造出来的生成树权值的较小值。
对于第一种方法,我们需要维护大环和每个小环的边的大根堆。我们应当舍弃每个环上最大的边。
对于第二种方法,我们需要选择在哪个小环上去掉两条边。这一选取应当基于在这个小环去掉两条边所能减少的权重与去掉一条边所能减少的权重之差。我们需要维护一个权重差的大根堆。另一方面,对于每个小环,我们还需要维护红边和蓝边的两个大根堆,因为我们显然应当选择最大的红边和最大的蓝边。
在每次修改权值后,维护这些堆的信息即可。
参考代码(C++)
#include <cstdio>
#include <iostream>
#include <set>
#include <vector>
#define INF 1e18
#define MOD 1000000007
using namespace std;
typedef long long ll;
template <typename T> void read(T &x) {
x = 0;
char c = getchar();
T sig = 1;
for (; !isdigit(c); c = getchar())
if (c == '-')
sig = -1;
for (; isdigit(c); c = getchar())
x = (x << 3) + (x << 1) + c - '0';
x *= sig;
}
ll n, m, e, k;
void input(vector<ll> &v, ll len, ll mod) {
ll a, b, c;
for (int i = 0; i < k; ++i)
read(v[i]);
read(a), read(b), read(c);
for (int i = k; i < len; ++i)
v[i] = (a * v[i - 2] + b * v[i - 1] + c) % mod;
}
class Solution {
public:
void solve(int case_num) {
printf("Case #%d: ", case_num);
read(n), read(m), read(e), read(k);
vector<ll> X(n), Y(n), I(e), W(e);
input(X, n, m);
input(Y, n, m);
input(I, e, n * m + n);
input(W, e, 1e9);
ll ans = 1, MST = n * m - 1;
ll MDT = INF;
vector<set<pair<ll, int>, greater<>>> lheap(n), rheap(n), heaps(n + 1);
vector<ll> value(n, -INF);
set<pair<ll, int>, greater<>> gheap;
vector<ll> edges(n * m + n, 1);
for (int i = 0; i < n; ++i)
for (int j = 0; j < m; ++j)
heaps[i].insert({1, i * m + j});
for (int i = n * m; i < n * m + n; ++i)
heaps[n].insert({1, i});
for (int i = 0; i < n; ++i) {
if (X[i] == Y[i])
continue;
int xi = i * m + X[i], yi = i * m + Y[i];
if (xi > yi)
swap(xi, yi);
for (int j = xi; j < yi; ++j)
lheap[i].insert({1, j});
for (int j = i * m; j < xi; ++j)
rheap[i].insert({1, j});
for (int j = yi; j < i * m + m; ++j)
rheap[i].insert({1, j});
if (!lheap[i].empty() && !rheap[i].empty()) {
gheap.insert({1, i});
value[i] = 1;
}
}
for (int i = 0; i < e; ++i) {
int idx = min(I[i] / m, n);
if (I[i] != heaps[idx].begin()->second)
MST += heaps[idx].begin()->first - edges[I[i]];
heaps[idx].erase({edges[I[i]], I[i]});
heaps[idx].insert({W[i], I[i]});
MST += W[i] - heaps[idx].begin()->first;
if (idx != n) {
if (lheap[idx].count({edges[I[i]], I[i]})) {
lheap[idx].erase({edges[I[i]], I[i]});
lheap[idx].insert({W[i], I[i]});
}
if (rheap[idx].count({edges[I[i]], I[i]})) {
rheap[idx].erase({edges[I[i]], I[i]});
rheap[idx].insert({W[i], I[i]});
}
if (!lheap[idx].empty() && !rheap[idx].empty()) {
gheap.erase({value[idx], idx});
value[idx] = lheap[idx].begin()->first + rheap[idx].begin()->first -
heaps[idx].begin()->first;
gheap.insert({value[idx], idx});
}
}
if (!gheap.empty())
MDT = MST + heaps[n].begin()->first - gheap.begin()->first;
edges[I[i]] = W[i];
ans = min(MST, MDT) % MOD * ans % MOD;
}
printf("%lld\n", ans);
}
};
int main() {
int t;
read(t);
for (int i = 1; i <= t; ++i) {
Solution solution = Solution();
solution.solve(i);
}
}
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
# Problem D - Log Drivin' Hirin' (opens new window)
本题待补。