Submission #151646

# Submission time Handle Problem Language Result Execution time Memory
151646 2019-09-04T02:56:13 Z rose0310 King of Chairs (FXCUP4_chairs) C++17
0 / 100
55 ms 3408 KB
#include "king.h"
#include<algorithm>
#include<iostream>
using namespace std;

long long SendInfo(std::vector<int> W, std::vector<int> C) {
	int N = W.size();
	long long upper = 0;
	sort(W.begin(), W.end());
	sort(C.begin(), C.end());
	int cnt = 0;
	for (auto i : W) {
		while (cnt<N-1 && i > C[cnt]) cnt++;
		if(i<=C[cnt])upper = i;
	}
	return upper;
}
#include "vassal.h"
#include<algorithm>
#include<iostream>
using namespace std;

long long BB;
std::vector<int>CC;
void Init(long long B, std::vector<int> C){
	int N = C.size();
	BB = B;
	CC= C;
	sort(CC.begin(), CC.end());
}
bool v[1123123];
int Maid(int W){
	if (BB < W) return -1;
	
	int l=0, r=CC.size()-1, mid;
	while (l < r) {
		mid = (l + r) / 2;
		if (CC[mid] < W) l = mid + 1;
		else r = mid;
	}
	while (v[r]) r++;
	v[r] = 1;
	return r;
}

Compilation message

vassal.cpp: In function 'void Init(long long int, std::vector<int>)':
vassal.cpp:9:6: warning: unused variable 'N' [-Wunused-variable]
  int N = C.size();
      ^
# Verdict Execution time Memory Grader output
1 Correct 4 ms 760 KB Correct
2 Runtime error 4 ms 900 KB Execution failed because the return code was nonzero
3 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Runtime error 49 ms 3360 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 3408 KB Execution failed because the return code was nonzero
2 Halted 0 ms 0 KB -