#include "king.h"
#include <bits/stdc++.h>
long long SendInfo(std::vector<int> W, std::vector<int> C)
{
int N = W.size();
sort(C.begin(),C.end());
sort(W.begin(),W.end());
std::vector <bool> able(N, false);
std::vector <bool> FC(N, false);
long long maxweight = 0;
for (int i = 0; i<N; i++)
{
int u = std::lower_bound(C.begin(),C.end(),W[i])-C.begin();
while(u < N && FC[u])
{
u++;
}
if (u == N)
{
continue;
}
else
{
FC[u] = 1;
maxweight = std::max(maxweight,(long long)W[i]);
}
}
return maxweight/2;
}
#include "vassal.h"
#include <algorithm>
long long BB;
std::vector <int> Chairs;
bool fullchair[101010];
void Init(long long B, std::vector<int> C)
{
int N = C.size();
BB = B*2;
Chairs = C;
sort(Chairs.begin(),Chairs.end());
}
int Maid(int W)
{
if (W > BB)
return -1;
int N = Chairs.size();
int u = std::lower_bound(Chairs.begin(),Chairs.end(),W)-Chairs.begin();
while(u < N && fullchair[u])
{
u++;
}
if (u == N)
{
return -1;
}
else
{
fullchair[u] = 1;
return u;
}
}
Compilation message
vassal.cpp: In function 'void Init(long long int, std::vector<int>)':
vassal.cpp:8:6: warning: unused variable 'N' [-Wunused-variable]
int N = C.size();
^
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Correct |
11 ms |
1040 KB |
Correct |
2 |
Incorrect |
11 ms |
1040 KB |
Wrong |
3 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Correct |
75 ms |
3676 KB |
Correct |
2 |
Correct |
146 ms |
5772 KB |
Correct |
3 |
Correct |
406 ms |
6312 KB |
Correct |
4 |
Incorrect |
146 ms |
6184 KB |
Wrong |
5 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Incorrect |
80 ms |
3780 KB |
Wrong |
2 |
Halted |
0 ms |
0 KB |
- |