-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathboj.11812.cc
69 lines (59 loc) · 1.58 KB
/
boj.11812.cc
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
#include <bits/stdc++.h>
using namespace std;
typedef long long ll;
typedef unsigned long long ull;
typedef pair<ll, ll> pll;
typedef pair<ull, ull> pull;
typedef const ll cll;
typedef queue<ll> qll;
typedef queue<pll> qpll;
typedef priority_queue<ll> pqll;
typedef priority_queue<pll> pqpll;
typedef vector<ll> vll;
typedef vector<pll> vpll;
typedef vector<vll> vvll;
typedef vector<vpll> vvpll;
#define FOR1(a, A) for (ll a = 0; a < A; ++a)
#define FOR2(a, b, A, B) \
for (ll a = 0; a < A; ++a) \
for (ll b = 0; b < B; ++b)
cll N = 1e15, K = 1e3, Q = 1e5;
ll n, k, q;
map<pll, ll> answers;
pll findDepth(ll x) {
ll d = 0;
if (k == 1) {
return {x - 1, 0};
}
for (ll _d = 1; x > _d; _d *= k) {
x -= _d, ++d;
}
return {d, --x};
}
int main(void) {
ios::sync_with_stdio(false);
cin.tie(NULL);
cout.tie(NULL);
cin >> n >> k >> q;
for (ll x, y, i = 0; i < q; ++i) {
cin >> x >> y;
pll infoX = findDepth(x), infoY = findDepth(y);
ll depthX = infoX.first, depthY = infoY.first,
minDepth = min(depthX, depthY);
ll widthX = infoX.second, widthY = infoY.second;
ll st = 0, en = minDepth, ans;
while (st <= en) {
ll mid = (st + en) / 2, _widthX, _widthY;
_widthX = widthX / pow(k, depthX - mid);
_widthY = widthY / pow(k, depthY - mid);
if (_widthX == _widthY) {
ans = depthX - mid + depthY - mid;
st = mid + 1;
} else {
en = mid - 1;
}
}
cout << ans << "\n";
}
return 0;
}