# | TimeUTC-0 | Username | Problem | Language | Result | Execution time | Memory |
---|---|---|---|---|---|---|---|
398504 | model_code | Floppy (RMI20_floppy) | C++17 | 142 ms | 3232 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.
/**
* user: andreescu-405
* fname: Mihnea
* lname: Andreescu
* task: Floppy
* score: 28.0
* date: 2020-12-03 08:36:30.524445
*/
#include <bits/stdc++.h>
#include "floppy.h"
using namespace std;
/**
string memo;
void save_to_floppy(const std::string &bits) {
memo = bits;
}**/
void read_array(int subtask_id, const std::vector<int> &v) {
string ret;
int n = (int) v.size(), k = log2(n) + 1;
vector<int> stk;
for (int i = 0; i < n; i++) {
while (!stk.empty() && v[i] > v[stk.back()]) {
stk.pop_back();
}
int j;
if (stk.empty()) {
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |