Submission #117703

# Submission time Handle Problem Language Result Execution time Memory
117703 2019-06-17T06:50:30 Z imsifile King of Chairs (FXCUP4_chairs) C++17
Compilation error
0 ms 0 KB
#include "king.h"

long long SendInfo(int N, std::vector<int> W, std::vector<int> C) {
	return (1<<20)-1;
}
#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

/tmp/ccg6Dumz.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/cc7rS465.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