Submission #596202

# Submission time Handle Problem Language Result Execution time Memory
596202 2022-07-14T13:20:08 Z Hacv16 Art Collections (BOI22_art) C++17
Compilation error
0 ms 0 KB
#include<bits/stdc++.h>
#include<art.h>
using namespace std;

typedef long long ll;
typedef pair<int, int> pii;

const int MAX = 4010;
const int INF = 0x3f3f3f3f;
const int MOD = 1e9 + 7;

#define pb push_back
#define sz(x) (int) x.size()
#define fr first
#define sc second
#define mp make_pair
#define all(x) x.begin(), x.end()
#define dbg(x) cout << #x << ": " << "[ " << x << " ]\n"

map<vector<int>, int> memo;

int query(vector<int> v){
	if(memo.find(v) != memo.end())
		return memo[v];
		
	return memo[v] = publish(v);
}

void solve(int N){
	vector<int> v(n), ans(n);
	iota(all(v), 1);
	
	for(int i = 1; i <= n; i++){
		vector<int> aux;
		
		for(int j = i; j <= n; j++)
			aux.pb(j);
			
		for(int j = 1; j < i; j++)
			aux.pb(j);
			
		int x = query(aux);
		
		aux.clear();
		
		for(int j = i + 1; j <= n; j++)
			aux.pb(j);
			
		for(int j = 1; j <= i; j++)
			aux.pb(j);
			
		int y = query(aux);
		
		int a = (n - 1 + x - y) >> 1;
		
		ans(a + 1) = i;
	}
	
	answer(ans);
}

Compilation message

art.cpp: In function 'void solve(int)':
art.cpp:30:16: error: 'n' was not declared in this scope
   30 |  vector<int> v(n), ans(n);
      |                ^
art.cpp:56:12: error: no match for call to '(std::vector<int>) (int)'
   56 |   ans(a + 1) = i;
      |            ^
interface.cpp: In function 'int publish(std::vector<int>)':
interface.cpp:20:17: warning: comparison of integer expressions of different signedness: 'std::vector<int>::size_type' {aka 'long unsigned int'} and 'int' [-Wsign-compare]
   20 |     if(v.size() != N) {
      |        ~~~~~~~~~^~~~
interface.cpp: In function 'void answer(std::vector<int>)':
interface.cpp:36:17: warning: comparison of integer expressions of different signedness: 'std::vector<int>::size_type' {aka 'long unsigned int'} and 'int' [-Wsign-compare]
   36 |     if(v.size() != N) {
      |        ~~~~~~~~~^~~~