This submission is migrated from previous version of oj.uz, which used different machine for grading. This submission may have different result if resubmitted.
#include<bits/stdc++.h>
using namespace std;
#define ii pair <int, int>
#define app push_back
#define all(a) a.begin(), a.end()
#define bp __builtin_popcountll
#define ll long long
#define mp make_pair
#define f first
#define s second
#define Time (double)clock()/CLOCKS_PER_SEC
const int N = 1e5+7;
int a[N];
vector <int> g[N];
int d[N];
int dist(int S, int T) {
for (int i = 0; i < N; ++i)
d[i] = N;
d[S] = 0;
queue <int> q; q.push(S);
while (q.size()) {
int u = q.front(); q.pop();
if (u == T)
return d[u];
for (int v : g[u])
if (d[u]+1 < d[v]) {
d[v] = d[u]+1;
q.push(v);
}
}
cout << "LMAO" << endl;
exit(1);
}
signed main() {
#ifdef HOME
freopen("input.txt", "r", stdin);
#else
#define endl '\n'
ios_base::sync_with_stdio(0); cin.tie(0);
#endif
int n, k, q;
cin >> n >> k >> q;
for (int i = 1; i <= n; ++i)
cin >> a[i];
while (q--) {
int l, r;
cin >> l >> r;
if (r < l)
swap(l, r);
if (l == r) {
cout << -1 << endl;
continue;
}
vector <int> p = {l, r};
{
int mx = a[l];
for (int i = l-1; i; --i) {
if (a[i] >= mx) {
p.app(i);
mx = a[i];
}
}
}
if (l + 1 < r) {
int pos = l+1;
for (int i = l + 1; i < r; ++i)
if (a[i] > a[pos])
pos = i;
int mx = -1;
for (int i = l + 1; i < pos; ++i) {
if (a[i] >= mx) {
p.app(i);
mx = a[i];
}
}
mx = -1;
for (int i = r - 1; i > pos; --i) {
if (a[i] >= mx) {
p.app(i);
mx = a[i];
}
}
p.app(pos);
}
{
int mx = a[r];
for (int i = r + 1; i <= n; ++i) {
if (a[i] >= mx) {
p.app(i);
mx = a[i];
}
}
}
sort(all(p));
/*
cout << "p : ";
for (auto e : p)
cout << e << ' ';
cout << endl;
*/
int u = -1, v = -1;
for (int i = 0; i < p.size(); ++i) {
if (p[i] == l) {
u = i;
}
if (p[i] == r) {
v = i;
}
}
for (int i = 0; i < N; ++i)
g[i].clear();
{
vector <int> s;
for (int i = 0; i < p.size(); ++i) {
while (s.size() && a[p[s.back()]] <= a[p[i]]) {
g[s.back()].app(i);
g[i].app(s.back());
s.pop_back();
}
s.app(i);
}
}
{
vector <int> s;
for (int i = (int)p.size() - 1; i >= 0; --i) {
while (s.size() && a[p[s.back()]] <= a[p[i]]) {
g[s.back()].app(i);
g[i].app(s.back());
s.pop_back();
}
s.app(i);
}
}
cout << dist(u, v) - 1 << endl;
}
}
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |