AtCoder Beginner Contest 188
Problem A - Three-Point Shot
Check if .
Time complexity is .
Code (Python 3)
x, y = map(int, input().split())
print('Yes' if abs(x - y) <= 2 else 'No')
Problem B - Orthogonality
Just calculate the inner product,
Time complexity is .
Code (Python 3)
n = int(input())
a = list(map(int, input().split()))
b = list(map(int, input().split()))
print('Yes' if sum(ai * bi for ai, bi in zip(a, b)) == 0 else 'No')
Problem C - ABC Tournament
Find the maximum of the lower half and the upper half, and compare them. The index of the smaller value is the answer we need.
Time complexity is .
Code (Python)
n = int(input())
a = list(map(int, input().split()))
half = 1 << (n - 1)
left_win = 0
for i in range(half):
if a[i] > a[left_win]:
left_win = i
right_win = half
for i in range(half, 1 << n):
if a[i] > a[right_win]:
right_win = i
if a[left_win] > a[right_win]:
print(right_win + 1)
else:
print(left_win + 1)
Problem D - Snuke Prime
Editorial for this problem has been completely rewritten.
Consider at first we have an infinite time span . The services will split the span into several non-overlapping segments. For example, if we have servcies and , the final segments would be (note that we discard the leftmost segment, which should be in this case):
Which can also be seen as:
To represent these segments, we only need their left endpoints, that is, . And these left endpoints come from either or . This is because only the start or the end of a service will make a difference. A service can also be seen as , in which is the first day that is not included, which means it is a start of a new segment. On the -th day, the total cost will increase by , while on the -th day, the total cost will decrease by .
After we get the segments, we need to calculate the cost for each segment, and compare it with , the price of the subscription. The time span of a segment can be easily determined from the start of the current segment and the start of the next segment.
To deal with the segments, we have two choices.
- (More overhead) We can discretize the endpoints and use a difference array to find the cost of each segment.
- (Clearer) We can use a map to store the change happening to the total cost on each critical day ( or , which is the start endpoint of a segment), then handle the segments one by one.
Both methods have a time complexity of , since in both cases we need a sorted list of the timestamps.
Code (C++, Discretization)
#include <iostream>
#include <map>
#include <set>
#include <vector>
using namespace std;
typedef long long ll;
int main() {
int N;
ll C;
cin >> N >> C;
vector<int> a(N), b(N), c(N);
set<int> s;
for (int i = 0; i < N; ++i) {
cin >> a[i] >> b[i] >> c[i];
// We only need a[i] and b[i]+1 to represent the final segments.
// For example, [1, 4] and [3, 8] will make
// [1, 2], [3, 4], [5, 8] and [9, +inf].
// We need 1, 3, 5, and 9 to represent these segments.
s.insert(a[i]), s.insert(b[i] + 1);
}
// Discretize the endpoints.
int idx = 0;
map<int, int> mp;
for (int si : s)
mp[si] = idx++;
int M = s.size();
vector<int> v(s.begin(), s.end());
// Use a difference array to handle the services.
vector<ll> diff(M);
for (int i = 0; i < N; ++i)
diff[mp[a[i]]] += c[i], diff[mp[b[i] + 1]] -= c[i];
// Accumulate the difference array to get the value of each segment.
// At the same time, add to the total cost.
vector<ll> acc(M);
acc[0] = diff[0];
ll ans = 0;
for (int i = 0; i < M - 1; ++i) {
if (i >= 1)
acc[i] = acc[i - 1] + diff[i];
int span = v[i + 1] - v[i];
ans += min(C, acc[i]) * span;
}
cout << ans;
}
Code (C++, Map)
#include <iostream>
#include <map>
#include <set>
#include <vector>
using namespace std;
typedef long long ll;
int main() {
int N;
ll C;
cin >> N >> C;
vector<int> a(N), b(N), c(N);
set<int> s;
map<int, ll> changes;
for (int i = 0; i < N; ++i) {
cin >> a[i] >> b[i] >> c[i];
// We only need a[i] and b[i]+1 to represent the final segments.
// For example, [1, 4] and [3, 8] will make
// [1, 2], [3, 4], [5, 8] and [9, +inf).
// They can also be seen as [1, 3), [3, 5), [5, 9) and [9, +inf].
// We need 1, 3, 5, and 9 to represent these segments.
s.insert(a[i]), s.insert(b[i] + 1);
// We use a map to store the change of cost on each critical day.
changes[a[i]] += c[i];
changes[b[i] + 1] -= c[i];
}
vector<int> v(s.begin(), s.end());
int M = v.size();
ll ans = 0, acc = 0;
for (int i = 0; i < M - 1; ++i) {
// Deal with the starting and ending of segments.
acc += changes[v[i]];
// Add to the total cost.
ans += min(C, acc) * (v[i + 1] - v[i]);
}
cout << ans;
}
Problem E - Peddler
Do dynamic programming in a reverse order (from to ).
Time complexity is .
Code (C++)
#include <iostream>
#include <vector>
#define MAXN 200005
using namespace std;
int main() {
int N, M;
cin >> N >> M;
vector<int> A(N + 1);
for (int i = 1; i <= N; ++i)
cin >> A[i];
vector<vector<int>> adj(N + 1);
for (int i = 0; i < M; ++i) {
int u, v;
cin >> u >> v;
adj[u].emplace_back(v);
}
vector<int> hi(N + 1, -1e9);
int ans = -1e9;
for (int i = N; i >= 1; --i) {
for (int v : adj[i])
hi[i] = max(hi[i], hi[v]);
ans = max(ans, hi[i] - A[i]);
hi[i] = max(hi[i], A[i]);
}
cout << ans;
}
Problem F - +1-1x2
- If , the answer if .
- Otherwise, we use BFS to solve this problem. To reduce the number of states, we start from instead of . For each current value , first try updating the answer with . If , then further consider the following cases:
- If is even, use (reverse of )
- Otherwise, use or . Specially, if the steps of the front element is equal to or larger than the answer, we can stop the search.
Code (Python)
from collections import deque
X, Y = map(int, input().split())
if X >= Y:
print(X - Y)
else:
ans = Y - X
dq = deque([(Y, 0)])
vis = set([Y])
while dq:
u, d = dq.popleft()
if d >= ans:
break
ans = min(ans, d + abs(u - X))
if u <= X:
continue
if u % 2 == 0:
if u // 2 not in vis:
vis.add(u // 2)
dq.append((u // 2, d + 1))
else:
if u + 1 not in vis:
vis.add(u + 1)
dq.append((u + 1, d + 1))
if u - 1 not in vis:
vis.add(u - 1)
dq.append((u - 1, d + 1))
print(ans)