Submission #151643

# Submission time Handle Problem Language Result Execution time Memory
151643 2019-09-04T02:35:39 Z rose0310 King of Chairs (FXCUP4_chairs) C++17
0 / 100
46 ms 3360 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 = 1;
	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;
		if (cnt==N-1) break;
	}
	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[121212];
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;
	}
	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 Incorrect 4 ms 636 KB Wrong
2 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Runtime error 40 ms 3332 KB Execution failed because the return code was nonzero
2 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Runtime error 46 ms 3360 KB Execution failed because the return code was nonzero
2 Halted 0 ms 0 KB -