Submission #148022

# Submission time Handle Problem Language Result Execution time Memory
148022 2019-08-31T11:22:21 Z imsifile King of Chairs (FXCUP4_chairs) C++17
0 / 100
65 ms 6456 KB
#include "king.h"
 
long long SendInfo(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(long long B, std::vector<int> C){
	int i=0;
	for(auto &x: C) sets.insert(make_pair(x,++i));
}
 
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;
}
# Verdict Execution time Memory Grader output
1 Runtime error 4 ms 900 KB Execution failed because the return code was nonzero
2 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Runtime error 55 ms 6320 KB Execution failed because the return code was nonzero
2 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Runtime error 65 ms 6456 KB Execution failed because the return code was nonzero
2 Halted 0 ms 0 KB -