Submission #533782

# Submission time Handle Problem Language Result Execution time Memory
533782 2022-03-07T08:43:53 Z amunduzbaev Floppy (RMI20_floppy) C++17
0 / 100
31 ms 11076 KB
#include "bits/stdc++.h"
using namespace std;
#include "floppy.h"
#ifndef EVAL
#include "grader.cpp"
#endif

const int MAX = 4e4 + 5;
int st[MAX][20];

void read_array(int QOQ, const vector<int> &v) {
	int n = (int)v.size();
	for(int i=0;i<n;i++) st[i][0] = i;
	for(int j=1;j<20;j++){
		for(int i=0;i + (1 << (j - 1)) < n;i++){
			st[i][j] = st[i][j-1];
			if(v[st[i + (1 << (j - 1))][j-1]] > v[st[i][j]]){
				st[i][j] = st[i + (1 << (j - 1))][j-1];
			}
		}
	}
	auto get = [&](int l, int r){
		int lg = __lg(r - l + 1);
		if(v[st[l][lg]] > v[st[r - (1 << lg) + 1][lg]]) return st[l][lg];
		return st[r - (1 << lg) + 1][lg];
	};
	
	string res(4 * n, '0');
	function<void(int, int, int)> rec = [&](int l, int r, int x){
		int m = get(l, r);
		if(l < m) res[x << 1] = '1', rec(l, m - 1, x << 1);
		if(m < r) res[x << 1 | 1] = '1', rec(m + 1, r, x << 1 | 1);
	};
	
	rec(0, n - 1, 1);
	save_to_floppy(res);
}

vector<int> solve_queries(int QOQ, int n, const string &tree, const vector<int> &a, const vector<int> &b) {
	int m = a.size();
	
	vector<int> v(n);
	int p = 0;
	function<int(int)> rec = [&](int x){
		int mx = 0;
		if(tree[x<<1] == '1') mx = rec(x<<1) + 1;
		int pos = p++;
		if(tree[x<<1|1] == '1') mx = rec(x<<1|1) + 1;
		v[pos] = mx;
		return mx;
	};
	
	rec(1);
	
	for(int i=0;i<n;i++) st[i][0] = i;
	for(int j=1;j<20;j++){
		for(int i=0;i + (1 << (j - 1)) < n;i++){
			st[i][j] = st[i][j-1];
			if(v[st[i + (1 << (j - 1))][j-1]] > v[st[i][j]]){
				st[i][j] = st[i + (1 << (j - 1))][j-1];
			}
		}
	}
	auto get = [&](int l, int r){
		int lg = __lg(r - l + 1);
		if(v[st[l][lg]] > v[st[r - (1 << lg) + 1][lg]]) return st[l][lg];
		return st[r - (1 << lg) + 1][lg];
	};
	
	vector<int> res;
	for(int i=0;i<m;i++){
		res.push_back(get(a[i], b[i]));
	} return res;
}

Compilation message

stub.cpp: In function 'void run2()':
stub.cpp:101:30: warning: comparison of integer expressions of different signedness: 'std::vector<int>::size_type' {aka 'long unsigned int'} and 'int' [-Wsign-compare]
  101 |     if (query_answers.size() != M) {
      |         ~~~~~~~~~~~~~~~~~~~~~^~~~
# Verdict Execution time Memory Grader output
1 Runtime error 1 ms 516 KB Execution killed with signal 11
2 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Runtime error 8 ms 3008 KB Execution killed with signal 11
2 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Runtime error 31 ms 11076 KB Execution killed with signal 11
2 Halted 0 ms 0 KB -