Skip to main content

AtCoder Beginner Contest 186

Video Editorial

Problem A - Brick

The answer is NW\left\lfloor\frac{N}{W}\right\rfloor.

Time complexity is O(1)\mathcal{O}(1).

Code (Python 3)
n, w = map(int, input().split())
print(n // w)

Problem B - Blocks on Grid

The answer is Ai,jminAi,jNM\sum A_{i,j}-\min A_{i,j}\cdot NM.

Time complexity is O(NM)\mathcal{O}(NM).

Code (Python 3)
def read_int():
return int(input())


def read_ints():
return map(int, input().split(' '))


h, w = read_ints()
lo = 100
s = 0
for i in range(h):
row = list(read_ints())
lo = min(lo, min(row))
s += sum(row)
print(s - lo * h * w)

Problem C - Unlucky 7

Just enumerate and check each number.

Time complexity is O(NlogN)\mathcal{O}(N\log N).

Code (Python 3)
n = int(input())
ans = 0
for i in range(1, n + 1):
if '7' in str(i) or '7' in oct(i):
continue
ans += 1
print(ans)

Problem D - Sum of difference

Note that:

i=1N1j=i+1NAiAj=12i=1N1j=i+1N2AiAj=12i=1N1j=i+1NAiAj+AjAi=12i=1Nj=1NAiAj\begin{aligned} \sum_{i=1}^{N-1}\sum_{j=i+1}^N|A_i-A_j|&=\frac{1}{2}\sum_{i=1}^{N-1}\sum_{j=i+1}^N2|A_i-A_j|\\ &=\frac{1}{2}\sum_{i=1}^{N-1}\sum_{j=i+1}^N|A_i-A_j|+|A_j-A_i|\\ &=\frac{1}{2}\sum_{i=1}^{N}\sum_{j=1}^N|A_i-A_j| \end{aligned}

We can first sort the array and then calculate the sum using prefix sum.

Time complexity is O(NlogN)\mathcal{O}(N\log N).

Code (Python 3)
n = int(input())
a = list(map(int, input().split()))
a.sort()
r = sum(a)
ans = 0
l = 0
for i in range(n):
r -= a[i]
ans += r - (n - 1 - i) * a[i] + i * a[i] - l
l += a[i]
print(ans // 2)

Problem E - Throne

Denote XX as the number of moves, and YY as the number of loops.

XK+S=YNXK+S=YN

So,

YNXK=SYN-XK=S

We can first use extended GCD on NN and KK to get,

YN+XK=gcd(N,K)Y'N+X'K=gcd(N,K)

If SS cannot be divided by gcd(N,K)gcd(N,K), we have no answer. Otherwise, we multiply both sides with Sgcd(N,K)\frac{S}{gcd(N,K)},

YN+XK=SY''N+X''K=S

Then we use lcm(N,K)lcm(N,K) to minimize YY and thus get the answer XX.

Time complexity is O(log(min(N,K)))\mathcal{O}(\log(\min(N,K))).

Code (Python 3)
def exgcd(a, b):
s = 0
olds = 1
t = 1
oldt = 0
r = b
oldr = a
while r:
q = oldr // r
oldr, r = r, oldr-q*r
olds, s = s, olds-q*s
oldt, t = t, oldt-q*t
return oldr, olds, oldt


t = int(input())
for _ in range(t):
n, s, k = map(int, input().split())
g, a, b = exgcd(n, k)
if s % g != 0:
print(-1)
else:
a *= s // g
b *= s // g
lcm = n * k // g
print(((a * n - s) % lcm + lcm) % lcm // k)

Problem F - Rook on Grid

First consider right-down routes, then down-right routes. There might be duplicates, which can be handled with data structures such as Fenwick tree or Balanced Binary Search Tree.

Time complexity is O(W+HlogW)\mathcal{O}(W+H\log W).

Code (C++)
#include <algorithm>
#include <ext/pb_ds/assoc_container.hpp>
#include <ext/pb_ds/tree_policy.hpp>
#include <iostream>
#include <vector>

using namespace __gnu_pbds;
using namespace std;
typedef long long ll;
typedef tree<int, null_type, less_equal<>, rb_tree_tag,
tree_order_statistics_node_update>
indexed_set;

int main() {
int h, w, m;
cin >> h >> w >> m;
vector<int> x(m), y(m);
vector<int> hlimit(h + 1, w), wlimit(w + 1, h);
for (int i = 0; i < m; ++i) {
cin >> x[i] >> y[i];
hlimit[x[i]] = min(hlimit[x[i]], y[i] - 1);
wlimit[y[i]] = min(wlimit[y[i]], x[i] - 1);
}
ll ans = 0;
for (int i = 1; i <= hlimit[1]; ++i)
ans += wlimit[i];
vector<pair<int, int>> v;
for (int i = 2; i <= wlimit[1]; ++i)
v.emplace_back(hlimit[i], i);
sort(v.begin(), v.end());
indexed_set s;
int r = 0;
for (auto [hl, i] : v) {
while (r < hl && r < hlimit[1])
s.insert(wlimit[++r]);
int dup = s.size() - s.order_of_key(i - 1);
ans += hlimit[i] - dup;
}
cout << ans << endl;
}