Submission #704912

#TimeUsernameProblemLanguageResultExecution timeMemory
704912cig32The Collection Game (BOI21_swaps)C++17
Compilation error
0 ms0 KiB
#include "swaps.h" #include "bits/stdc++.h" using namespace std; void solve(int N, int V) { // TODO implement this function for(int i=1; i<=9; i++) { for(int j=(1 << ((int) log2(N))); j>=1; j>>=1) { int count = 0; for(int k=1; k<=N; k+=(j<<1)) { for(int l=k; l<k+j; l++) { if((k<<1) + (j<<1) - 1 - l <= N) { count++; schedule(l, k + k+(j<<1)-1 - l); } } } if(!count) continue; vector<int> uni = visit(); for(int k=1; k<=N; k++) cout << A[k] << " \n"[k == N]; } } vector<int> identity; for(int i=1; i<=N; i++) identity.push_back(i); answer(identity); }

Compilation message (stderr)

swaps.cpp: In function 'void solve(int, int)':
swaps.cpp:20:39: error: 'A' was not declared in this scope
   20 |       for(int k=1; k<=N; k++) cout << A[k] << " \n"[k == N];
      |                                       ^