Submission #117701

#TimeUsernameProblemLanguageResultExecution timeMemory
117701imsifileKing of Chairs (FXCUP4_chairs)C++17
Compilation error
0 ms0 KiB
#include "king.h" long long SendInfo(int N, std::vector<int> W, std::vector<int> C) { return 0; }
#include "vassal.h" #include <set> using namespace std; set<pair<int,int>> sets; void Init(int N, long long B, std::vector<int> C){ for(int i=0; i<N; i++) sets.insert(make_pair(C[i],i+1)); } int Maid(int W){ auto it = sets.lower_bound(make_pair(W,0)); if(it == sets.end()) return 0; int v=it->second; sets.erase(it); return v; }

Compilation message (stderr)

/tmp/ccYOXbzg.o: In function `main':
grader_k.cpp:(.text.startup+0x14c): undefined reference to `SendInfo(std::vector<int, std::allocator<int> >, std::vector<int, std::allocator<int> >)'
collect2: error: ld returned 1 exit status

/tmp/cckXGx9Q.o: In function `main':
grader_v.cpp:(.text.startup+0x1b7): undefined reference to `Init(long long, std::vector<int, std::allocator<int> >)'
collect2: error: ld returned 1 exit status