# | Time | Username | Problem | Language | Result | Execution time | Memory |
---|---|---|---|---|---|---|---|
494346 | jasen_penchev | Floppy (RMI20_floppy) | C++14 | 0 ms | 0 KiB |
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 "floppy.h"
#include <iostream>
#include <string>
#include <vector>
#define endl '\n'
using namespace std;
const int MAXN = 40000;
int link[MAXN + 5];
void save_to_floppy(const string &bits);
void read_array(int subtask_id, const vector<int> &v)
{
int n = v.size();
stack<int> st;
st.push(-1);
for (int i = 0; i < n; ++ i)
{
while (st.top() != -1 and v[st.top()] < v[i]) st.pop();
link[i] = st.top() + 1;
st.push(i);
}
int cnt = 0, n0 = n;
while (n0)
{
n0 /= 2;
cnt++;
}
string bits = "";
for (int i = 0; i < n; ++ i)
{
string s = "";
int j = link[i];
while (j)
{
s = char(j % 2 + '0') + s;
j /= 2;
}
while (s.size() < cnt) s = '0' + s;
bits += s;
}
save_to_floppy(bits);
}
vector<int> solve_queries(int subtask_id, int n, const string &bits, const vector<int> &a, const vector<int> &b)
{
int cnt = 0, n0 = n;
while (n0)
{
n0 /= 2;
cnt++;
}
for (int i = 0; i < n; ++ i)
{
link[i] = 0;
for (int j = i * cnt; j < (i + 1) * cnt; ++ j)
{
link[i] = link[i] * 2 + (bits[j] - '0');
}
link[i]--;
}
vector<int> v;
int m = a.size();
for (int i = 0; i < m; ++ i)
{
int pos = b[i];
while (link[pos] >= a[i]) pos = link[pos];
v.push_back(pos);
}
return v;
}