Submission #524559

#TimeUsernameProblemLanguageResultExecution timeMemory
524559fabijan_cikacMinerals (JOI19_minerals)C++17
Compilation error
0 ms0 KiB
#include <bits/stdc++.h> using namespace std; const int MAXN = (1 << 17); #define F first #define S second #define pp pair<int, int> vector<pp> sol; deque<int> q; int p[MAXN] = { 0 }; /*int Query(int x){ int y; cin >> y; return y; } void Answer(int x, int y){ return; }*/ void findpar(vector<int> v){ if (v.size() == 2){ sol.push_back({v[0], v[1]}); return; } while (!q.empty()){ if (p[q.front()]){ int z = query(q.front()); p[q.front()] = 0; } q.pop_front(); } vector<int> a[2]; int maks = v.size() / 4; for (int i = 0; i < v.size(); ++i){ int x = query(v[i]); q.push_back(v[i]); p[v[i]] = 1; if (x > maks){ query(v[i]); a[1].push_back(v[i]); p[v[i]] = 0; } else a[0].push_back(v[i]); } findpar(a[0]); findpar(a[1]); return; } void Solve(int N){ ios_base::sync_with_stdio(false); cin.tie(NULL); vector<int> v; for (int i = 0; i < 2 * N; ++i) v.push_back(i); findpar(v); for (int i = 0; i < N; ++i) answer(sol[i].F + 1, sol[i].S + 1); }

Compilation message (stderr)

minerals.cpp: In function 'void findpar(std::vector<int>)':
minerals.cpp:30:21: error: 'query' was not declared in this scope
   30 |             int z = query(q.front()); p[q.front()] = 0;
      |                     ^~~~~
minerals.cpp:30:17: warning: unused variable 'z' [-Wunused-variable]
   30 |             int z = query(q.front()); p[q.front()] = 0;
      |                 ^
minerals.cpp:35:23: warning: comparison of integer expressions of different signedness: 'int' and 'std::vector<int>::size_type' {aka 'long unsigned int'} [-Wsign-compare]
   35 |     for (int i = 0; i < v.size(); ++i){
      |                     ~~^~~~~~~~~~
minerals.cpp:36:17: error: 'query' was not declared in this scope
   36 |         int x = query(v[i]); q.push_back(v[i]); p[v[i]] = 1;
      |                 ^~~~~
minerals.cpp: In function 'void Solve(int)':
minerals.cpp:54:9: error: 'answer' was not declared in this scope
   54 |         answer(sol[i].F + 1, sol[i].S + 1);
      |         ^~~~~~