# AtCoder Beginner Contest 187 Editorial
Video Editorial (opens new window)
# Problem A - Large Digits (opens new window)
Calculate the sum of digits and compare.
Time complexity is .
Code (Python 3)
def dsum(n):
return sum(int(x) for x in str(n))
a, b = map(int, input().split())
print(max(dsum(a), dsum(b)))
2
3
4
5
# Problem B - Gentle Pairs (opens new window)
Enumerate all pairs and calculate the slope.
Time complexity is .
Code (Python 3)
n = int(input())
x = []
y = []
for _ in range(n):
xi, yi = map(int, input().split())
x.append(xi)
y.append(yi)
ans = 0
for i in range(n):
for j in range(i + 1, n):
if abs(y[j] - y[i]) <= abs(x[j] - x[i]):
ans += 1
print(ans)
2
3
4
5
6
7
8
9
10
11
12
13
14
# Problem C - 1-SAT (opens new window)
Use two HashSets to store strings with !
and without !
separately. If their intersection is non-empty, we can output any string in it, otherwise we output satisfiable
.
Time complexity is .
Code (C++)
#include <iostream>
#include <unordered_set>
using namespace std;
int main() {
int n;
cin >> n;
unordered_set<string> clean, banged;
for (int i = 0; i < n; ++i) {
string s;
cin >> s;
if (s[0] == '!')
banged.insert(s.substr(1));
else
clean.insert(s);
}
for (string s : clean)
if (banged.count(s)) {
cout << s;
return 0;
}
cout << "satisfiable";
}
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
# Problem D - Choose Me (opens new window)
Sort all the towns by in the descending order, then make speeches greedily.
Time complexity is .
Code (C++)
#include <algorithm>
#include <iostream>
#include <vector>
using namespace std;
typedef long long ll;
int main() {
int n;
cin >> n;
vector<pair<ll, ll>> towns;
ll sa = 0, sb = 0;
for (int i = 0; i < n; ++i) {
int a, b;
cin >> a >> b;
towns.emplace_back(a, b);
sa += a;
}
sort(towns.begin(), towns.end(), [](pair<ll, ll> &p, pair<ll, ll> &q){
return p.first * 2 + p.second > q.first * 2 + q.second;
});
for (int i = 0; i < n; ++i) {
if (sa < sb) {
cout << i;
return 0;
}
sa -= towns[i].first, sb += towns[i].first + towns[i].second;
}
cout << n;
}
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
# Problem E - Through Path (opens new window)
Store the changes lazily at the root of each subtree. If in one operation, the nodes to be modified do not form a subtree, then they must be the compliment of a subtree. In this case, we add to all nodes (the value is stored in a global variable), and add to the subtree. After all modifications, we can get the value of each node recursively.
Time complexity is .
Code (C++)
#include <iostream>
#include <vector>
#define MAXN 200005
using namespace std;
typedef long long ll;
vector<int> adj[MAXN]{};
int parent[MAXN]{};
ll lazy[MAXN]{}, val[MAXN];
ll global_lazy = 0;
void build_tree(int u) {
for (int v : adj[u]) {
if (v != parent[u]) {
parent[v] = u;
build_tree(v);
}
}
}
void push_down(int u, ll lazy_acc) {
lazy_acc += lazy[u];
val[u] = global_lazy + lazy_acc;
for (int v : adj[u]) {
if (v != parent[u])
push_down(v, lazy_acc);
}
}
int main() {
int n;
cin >> n;
vector<pair<int, int>> edges;
for (int i = 0; i < n - 1; ++i) {
int u, v;
cin >> u >> v;
adj[u].emplace_back(v);
adj[v].emplace_back(u);
edges.emplace_back(u, v);
}
build_tree(1);
int q;
cin >> q;
while (q--) {
int t, e, x;
cin >> t >> e >> x;
int u = edges[e - 1].first, v = edges[e - 1].second;
if (t == 2)
swap(u, v);
if (parent[v] == u) {
global_lazy += x;
x = -x;
swap(u, v);
}
lazy[u] += x;
}
push_down(1, 0);
for (int i = 1; i <= n; ++i)
cout << val[i] << endl;
}
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
# Problem F - Close Group (opens new window)
Precalculate if a subset can be made up of a single connected components, then do a subset DP.
Time complexity is .
Code (C++)
#include <iostream>
#include <vector>
using namespace std;
int main() {
int n, m;
cin >> n >> m;
vector<vector<bool>> adj(n, vector<bool>(n));
for (int i = 0; i < m; ++i) {
int u, v;
cin >> u >> v;
u--, v--;
adj[u][v] = adj[v][u] = true;
}
int mask = 1 << n;
vector<bool> can(mask);
for (int i = 1; i < mask; ++i) {
vector<int> v;
for (int j = 0; j < n; ++j)
if (i & (1 << j))
v.emplace_back(j);
if (v.size() == 1)
can[i] = true;
else {
bool valid = true;
for (int j = 0; j < v.size(); ++j) {
for (int k = j + 1; k < v.size(); ++k)
if (!adj[v[j]][v[k]]) {
valid = false;
break;
}
if (!valid)
break;
}
can[i] = valid;
}
}
const int INF = 1e9;
vector<int> dp(mask, INF);
for (int i = 1; i < mask; ++i) {
if (can[i])
dp[i] = 1;
else {
for (int sub = (i - 1) & i; sub; sub = (sub - 1) & i)
dp[i] = min(dp[i], dp[sub] + dp[i ^ sub]);
}
}
cout << dp[mask - 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