Submission #444038

#TimeUsernameProblemLanguageResultExecution timeMemory
444038yungyaoThe Collection Game (BOI21_swaps)C++17
Compilation error
0 ms0 KiB
using namespace std; #include <iostream> #include <algorithm> #include <queue> #include <stack> #include <map> #include <set> #include <utility> #include <vector> #include <memory.h> typedef long long LL; typedef pair<int,int> pii; #define F first #define S second #define mkp make_pair #define iter(x) x.begin(),x.end() #define MEM(s,e) memset(s,e,sizeof(s)) const int maxn = 0; #include <swaps.h> void solve(int n,int v){ for (int i=1;i<n;++i){ for (int j=i;j<n;++j){ schedule(j,j+1); } visit(); } vector <int> ret(n); for (int i=0;i<n;++i) ret[i] = i+1; return ret; }

Compilation message (stderr)

swaps.cpp: In function 'void solve(int, int)':
swaps.cpp:31:12: error: return-statement with a value, in function returning 'void' [-fpermissive]
   31 |     return ret;
      |            ^~~